IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Bibliothèques et frameworks PHP Discussion :

[XML] [PHP 4] Lecture XML


Sujet :

Bibliothèques et frameworks PHP

  1. #1
    Membre éclairé Avatar de bruman
    Inscrit en
    Juin 2005
    Messages
    566
    Détails du profil
    Informations personnelles :
    Âge : 38

    Informations forums :
    Inscription : Juin 2005
    Messages : 566
    Points : 794
    Points
    794
    Par défaut [XML] [PHP 4] Lecture XML
    Bonjour,

    je voudrais lire un fichier xml. Je dois développer en php4 (obligation client...).

    J'ai tenté d'utiliser domxml mais impossible de l'activer dans mon wamp, je ne sais pas pourquoi... J'ai ce message d'erreur :

    Fatal error: Call to undefined function: domxml_open_file() in [...]

    Je cherche donc un autre moyen de lire un fichier xml pour pouvoir récupérer un attribut et un contenu d'une balise.

    Quelqu'un voit comment faire?

    Merci
    Le hardware est la partie de l'ordinateur qui prend les coups quand le software se plante.
    Théoriquement, ça fonctionne, sauf erreur....

  2. #2
    Membre chevronné Avatar de nosferapti
    Profil pro
    Inscrit en
    Avril 2009
    Messages
    1 157
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2009
    Messages : 1 157
    Points : 1 895
    Points
    1 895
    Par défaut
    Citation Envoyé par bruman Voir le message
    J'ai tenté d'utiliser domxml mais impossible de l'activer dans mon wamp, je ne sais pas pourquoi... J'ai ce message d'erreur :

    Fatal error: Call to undefined function: domxml_open_file() in [...]
    l'extension n'est peut-être pas activée
    utilise la fonction http://php.net/phpinfo pour voir ça
    GNAP !

  3. #3
    Membre éclairé Avatar de bruman
    Inscrit en
    Juin 2005
    Messages
    566
    Détails du profil
    Informations personnelles :
    Âge : 38

    Informations forums :
    Inscription : Juin 2005
    Messages : 566
    Points : 794
    Points
    794
    Par défaut
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    PHP Logo
    PHP Version 4.4.6
     
    System 	Windows NT KEALYS1 6.0 build 6001
    Build Date 	Feb 28 2007 21:30:43
    Server API 	Apache 2.0 Handler
    Virtual Directory Support 	enabled
    Configuration File (php.ini) Path 	C:\wamp\bin\apache\apache2.0.63\bin\php.ini
    PHP API 	20020918
    PHP Extension 	20020429
    Zend Extension 	20050606
    Debug Build 	no
    Zend Memory Manager 	enabled
    Thread Safety 	enabled
    Registered PHP Streams 	php, http, ftp, compress.zlib
     
    Zend logo This program makes use of the Zend Scripting Language Engine:
    Zend Engine v1.3.0, Copyright (c) 1998-2004 Zend Technologies
     
    PHP Credits
    Configuration
    PHP Core
    Directive	Local Value	Master Value
    allow_call_time_pass_reference	Off	Off
    allow_url_fopen	On	On
    always_populate_raw_post_data	Off	Off
    arg_separator.input	&	&
    arg_separator.output	&	&
    asp_tags	Off	Off
    auto_append_file	no value	no value
    auto_prepend_file	no value	no value
    browscap	no value	no value
    default_charset	no value	no value
    default_mimetype	text/html	text/html
    define_syslog_variables	Off	Off
    disable_classes	no value	no value
    disable_functions	no value	no value
    display_errors	On	On
    display_startup_errors	Off	Off
    doc_root	no value	no value
    docref_ext	no value	no value
    docref_root	no value	no value
    enable_dl	On	On
    error_append_string	no value	no value
    error_log	c:/wamp/logs/php_error.log	c:/wamp/logs/php_error.log
    error_prepend_string	no value	no value
    error_reporting	2039	2039
    expose_php	On	On
    extension_dir	c:/wamp/bin/php/php4.4.6/extensions/	c:/wamp/bin/php/php4.4.6/extensions/
    file_uploads	On	On
    gpc_order	GPC	GPC
    highlight.bg	#FFFFFF	#FFFFFF
    highlight.comment	#FF8000	#FF8000
    highlight.default	#0000BB	#0000BB
    highlight.html	#000000	#000000
    highlight.keyword	#007700	#007700
    highlight.string	#DD0000	#DD0000
    html_errors	On	On
    ignore_repeated_errors	Off	Off
    ignore_repeated_source	Off	Off
    ignore_user_abort	Off	Off
    implicit_flush	Off	Off
    include_path	.;c:\php4\pear	.;c:\php4\pear
    log_errors	On	On
    log_errors_max_len	1024	1024
    magic_quotes_gpc	Off	Off
    magic_quotes_runtime	Off	Off
    magic_quotes_sybase	Off	Off
    max_execution_time	30	30
    max_input_time	60	60
    open_basedir	no value	no value
    output_buffering	4096	4096
    output_handler	no value	no value
    post_max_size	8M	8M
    precision	14	14
    register_argc_argv	Off	Off
    register_globals	Off	Off
    report_memleaks	On	On
    safe_mode	Off	Off
    safe_mode_exec_dir	no value	no value
    safe_mode_gid	Off	Off
    safe_mode_include_dir	no value	no value
    sendmail_from	no value	no value
    sendmail_path	no value	no value
    serialize_precision	100	100
    short_open_tag	On	On
    SMTP	localhost	localhost
    smtp_port	25	25
    sql.safe_mode	Off	Off
    track_errors	Off	Off
    unserialize_callback_func	no value	no value
    upload_max_filesize	2M	2M
    upload_tmp_dir	c:/wamp/tmp	c:/wamp/tmp
    user_dir	no value	no value
    variables_order	GPCS	GPCS
    xmlrpc_error_number	0	0
    xmlrpc_errors	Off	Off
    y2k_compliance	On	On
     
    apache2handler
    Apache Version 	Apache/2.0.63 (Win32) PHP/4.4.6
    Apache API Version 	20020903
    Server Administrator 	admin@localhost
    Hostname:Port 	localhost:80
    Max Requests 	Per Child: 0 - Keep Alive: on - Max Per Connection: 100
    Timeouts 	Connection: 300 - Keep-Alive: 15
    Virtual Server 	No
    Server Root 	C:/wamp/bin/apache/apache2.0.63
    Loaded Modules 	core mod_win32 mpm_winnt http_core mod_so mod_access mod_actions mod_alias mod_asis mod_auth mod_autoindex mod_cgi mod_dir mod_env mod_imap mod_include mod_isapi mod_log_config mod_mime mod_negotiation mod_setenvif mod_userdir sapi_apache2
     
    Directive	Local Value	Master Value
    engine	1	1
    last_modified	0	0
    xbithack	0	0
     
    Apache Environment
    Variable	Value
    HTTP_HOST 	localhost
    HTTP_USER_AGENT 	Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 (.NET CLR 3.5.30729)
    HTTP_ACCEPT 	text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    HTTP_ACCEPT_LANGUAGE 	fr,fr-fr;q=0.8,en-us;q=0.5,en;q=0.3
    HTTP_ACCEPT_ENCODING 	gzip,deflate
    HTTP_ACCEPT_CHARSET 	ISO-8859-1,utf-8;q=0.7,*;q=0.7
    HTTP_KEEP_ALIVE 	300
    HTTP_CONNECTION 	keep-alive
    HTTP_COOKIE 	PHPSESSID=f89796995d0f960fb33ec4b2a815a6f7
    PATH 	C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files\Samsung\Samsung PC Studio 3\;C:\Program Files\QuickTime\QTSystem\
    SystemRoot 	C:\Windows
    COMSPEC 	C:\Windows\system32\cmd.exe
    PATHEXT 	.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
    WINDIR 	C:\Windows
    SERVER_SIGNATURE 	<address>Apache/2.0.63 (Win32) PHP/4.4.6 Server at localhost Port 80</address>
    SERVER_SOFTWARE 	Apache/2.0.63 (Win32) PHP/4.4.6
    SERVER_NAME 	localhost
    SERVER_ADDR 	127.0.0.1
    SERVER_PORT 	80
    REMOTE_ADDR 	127.0.0.1
    DOCUMENT_ROOT 	C:/wamp/www/
    SERVER_ADMIN 	admin@localhost
    SCRIPT_FILENAME 	C:/wamp/www/ezus/test.php
    REMOTE_PORT 	52489
    GATEWAY_INTERFACE 	CGI/1.1
    SERVER_PROTOCOL 	HTTP/1.1
    REQUEST_METHOD 	GET
    QUERY_STRING 	no value
    REQUEST_URI 	/ezus/test.php
    SCRIPT_NAME 	/ezus/test.php
     
    HTTP Headers Information
    HTTP Request Headers
    HTTP Request 	GET /ezus/test.php HTTP/1.1
    Host 	localhost
    User-Agent 	Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 (.NET CLR 3.5.30729)
    Accept 	text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    Accept-Language 	fr,fr-fr;q=0.8,en-us;q=0.5,en;q=0.3
    Accept-Encoding 	gzip,deflate
    Accept-Charset 	ISO-8859-1,utf-8;q=0.7,*;q=0.7
    Keep-Alive 	300
    Connection 	keep-alive
    Cookie 	PHPSESSID=f89796995d0f960fb33ec4b2a815a6f7
    HTTP Response Headers
    X-Powered-By 	PHP/4.4.6
    Keep-Alive 	timeout=15, max=100
    Connection 	Keep-Alive
    Transfer-Encoding 	chunked
    Content-Type 	text/html
     
    bcmath
    BCMath support 	enabled
     
    calendar
    Calendar support 	enabled
     
    com
    Directive	Local Value	Master Value
    com.allow_dcom	Off	Off
    com.autoregister_casesensitive	On	On
    com.autoregister_typelib	Off	Off
    com.autoregister_verbose	Off	Off
    com.typelib_file	no value	no value
     
    ctype
    ctype functions 	enabled
     
    ftp
    FTP support 	enabled
     
    gd
    GD Support 	enabled
    GD Version 	bundled (2.0.28 compatible)
    FreeType Support 	enabled
    FreeType Linkage 	with freetype
    GIF Read Support 	enabled
    GIF Create Support 	enabled
    JPG Support 	enabled
    PNG Support 	enabled
    WBMP Support 	enabled
    XBM Support 	enabled
     
    mbstring
    Multibyte Support 	enabled
    Japanese support 	enabled
    Simplified chinese support 	enabled
    Traditional chinese support 	enabled
    Korean support 	enabled
    Russian support 	enabled
    Multibyte (japanese) regex support 	enabled
     
    mbstring extension makes use of "streamable kanji code filter and converter", which is distributed under the GNU Lesser General Public License version 2.1.
     
    Directive	Local Value	Master Value
    mbstring.detect_order	no value	no value
    mbstring.encoding_translation	Off	Off
    mbstring.func_overload	0	0
    mbstring.http_input	pass	pass
    mbstring.http_output	pass	pass
    mbstring.internal_encoding	no value	no value
    mbstring.language	neutral	neutral
    mbstring.substitute_character	no value	no value
     
    mysql
    MySQL Support	enabled
    Active Persistent Links 	0
    Active Links 	0
    Client API version 	3.23.49
     
    Directive	Local Value	Master Value
    mysql.allow_persistent	On	On
    mysql.connect_timeout	60	60
    mysql.default_host	no value	no value
    mysql.default_password	no value	no value
    mysql.default_port	no value	no value
    mysql.default_socket	no value	no value
    mysql.default_user	no value	no value
    mysql.max_links	Unlimited	Unlimited
    mysql.max_persistent	Unlimited	Unlimited
    mysql.trace_mode	Off	Off
     
    odbc
    ODBC Support	enabled
    Active Persistent Links 	0
    Active Links 	0
    ODBC library 	Win32
     
    Directive	Local Value	Master Value
    odbc.allow_persistent	On	On
    odbc.check_persistent	On	On
    odbc.default_db	no value	no value
    odbc.default_pw	no value	no value
    odbc.default_user	no value	no value
    odbc.defaultbinmode	return as is	return as is
    odbc.defaultlrl	return up to 4096 bytes	return up to 4096 bytes
    odbc.max_links	Unlimited	Unlimited
    odbc.max_persistent	Unlimited	Unlimited
     
    overload
    User-Space Object Overloading Support 	enabled
     
    pcre
    PCRE (Perl Compatible Regular Expressions) Support 	enabled
    PCRE Library Version 	7.0 18-Dec-2006
     
    pgsql
    PostgreSQL Support	enabled
    Active Persistent Links 	0
    Active Links 	0
     
    Directive	Local Value	Master Value
    pgsql.allow_persistent	On	On
    pgsql.auto_reset_persistent	Off	Off
    pgsql.ignore_notice	Off	Off
    pgsql.log_notice	Off	Off
    pgsql.max_links	Unlimited	Unlimited
    pgsql.max_persistent	Unlimited	Unlimited
     
    session
    Session Support 	enabled
    Registered save handlers 	files user
     
    Directive	Local Value	Master Value
    session.auto_start	Off	Off
    session.bug_compat_42	Off	Off
    session.bug_compat_warn	On	On
    session.cache_expire	180	180
    session.cache_limiter	nocache	nocache
    session.cookie_domain	no value	no value
    session.cookie_lifetime	0	0
    session.cookie_path	/	/
    session.cookie_secure	Off	Off
    session.entropy_file	no value	no value
    session.entropy_length	0	0
    session.gc_divisor	1000	1000
    session.gc_maxlifetime	1440	1440
    session.gc_probability	1	1
    session.name	PHPSESSID	PHPSESSID
    session.referer_check	no value	no value
    session.save_handler	files	files
    session.save_path	c:/wamp/tmp	c:/wamp/tmp
    session.serialize_handler	php	php
    session.use_cookies	On	On
    session.use_only_cookies	Off	Off
    session.use_trans_sid	Off	Off
     
    standard
    Regex Library 	Bundled library enabled
    Dynamic Library Support 	enabled
    Internal Sendmail Support for Windows 	enabled
     
    Directive	Local Value	Master Value
    assert.active	1	1
    assert.bail	0	0
    assert.callback	no value	no value
    assert.quiet_eval	0	0
    assert.warning	1	1
    auto_detect_line_endings	0	0
    default_socket_timeout	60	60
    safe_mode_allowed_env_vars	PHP_	PHP_
    safe_mode_protected_env_vars	LD_LIBRARY_PATH	LD_LIBRARY_PATH
    url_rewriter.tags	a=href,area=href,frame=src,input=src,form=fakeentry	a=href,area=href,frame=src,input=src,form=fakeentry
    user_agent	no value	no value
     
    tokenizer
    Tokenizer Support 	enabled
     
    wddx
    WDDX Support	enabled
    WDDX Session Serializer 	enabled
     
    xml
    XML Support 	active
    XML Namespace Support 	active
    EXPAT Version 	1.95.6
     
    zlib
    ZLib Support 	enabled
    Compiled Version 	1.2.3
    Linked Version 	1.2.3
     
    Directive	Local Value	Master Value
    zlib.output_compression	Off	Off
    zlib.output_compression_level	-1	-1
    zlib.output_handler	no value	no value
     
    Additional Modules
    Module Name
     
    Environment
    Variable	Value
    ALLUSERSPROFILE 	C:\ProgramData
    APPDATA 	C:\Windows\system32\config\systemprofile\AppData\Roaming
    CLASSPATH 	.;C:\Program Files\Java\jre6\lib\ext\QTJava.zip
    CommonProgramFiles 	C:\Program Files\Common Files
    COMPUTERNAME 	KEALYS1
    ComSpec 	C:\Windows\system32\cmd.exe
    FP_NO_HOST_CHECK 	NO
    INPUTRC 	c:\ruby\bin\inputrc.euro
    LOCALAPPDATA 	C:\Windows\system32\config\systemprofile\AppData\Local
    NUMBER_OF_PROCESSORS 	2
    OS 	Windows_NT
    Path 	C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files\Samsung\Samsung PC Studio 3\;C:\Program Files\QuickTime\QTSystem\
    PATHEXT 	.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
    PROCESSOR_ARCHITECTURE 	x86
    PROCESSOR_IDENTIFIER 	x86 Family 6 Model 15 Stepping 13, GenuineIntel
    PROCESSOR_LEVEL 	6
    PROCESSOR_REVISION 	0f0d
    ProgramData 	C:\ProgramData
    ProgramFiles 	C:\Program Files
    PUBLIC 	C:\Users\Public
    QTJAVA 	C:\Program Files\Java\jre6\lib\ext\QTJava.zip
    SystemDrive 	C:
    SystemRoot 	C:\Windows
    TEMP 	C:\Windows\TEMP
    TMP 	C:\Windows\TEMP
    USERDOMAIN 	KEALYS
    USERNAME 	KEALYS1$
    USERPROFILE 	C:\Windows\system32\config\systemprofile
    windir 	C:\Windows
    AP_PARENT_PID 	4400
     
    PHP Variables
    Variable	Value
    _REQUEST["PHPSESSID"]	f89796995d0f960fb33ec4b2a815a6f7
    _COOKIE["PHPSESSID"]	f89796995d0f960fb33ec4b2a815a6f7
    _SERVER["HTTP_HOST"]	localhost
    _SERVER["HTTP_USER_AGENT"]	Mozilla/5.0 (Windows; U; Windows NT 6.0; fr; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 (.NET CLR 3.5.30729)
    _SERVER["HTTP_ACCEPT"]	text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    _SERVER["HTTP_ACCEPT_LANGUAGE"]	fr,fr-fr;q=0.8,en-us;q=0.5,en;q=0.3
    _SERVER["HTTP_ACCEPT_ENCODING"]	gzip,deflate
    _SERVER["HTTP_ACCEPT_CHARSET"]	ISO-8859-1,utf-8;q=0.7,*;q=0.7
    _SERVER["HTTP_KEEP_ALIVE"]	300
    _SERVER["HTTP_CONNECTION"]	keep-alive
    _SERVER["HTTP_COOKIE"]	PHPSESSID=f89796995d0f960fb33ec4b2a815a6f7
    _SERVER["PATH"]	C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files\Samsung\Samsung PC Studio 3\;C:\Program Files\QuickTime\QTSystem\
    _SERVER["SystemRoot"]	C:\Windows
    _SERVER["COMSPEC"]	C:\Windows\system32\cmd.exe
    _SERVER["PATHEXT"]	.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
    _SERVER["WINDIR"]	C:\Windows
    _SERVER["SERVER_SIGNATURE"]	<address>Apache/2.0.63 (Win32) PHP/4.4.6 Server at localhost Port 80</address>
    _SERVER["SERVER_SOFTWARE"]	Apache/2.0.63 (Win32) PHP/4.4.6
    _SERVER["SERVER_NAME"]	localhost
    _SERVER["SERVER_ADDR"]	127.0.0.1
    _SERVER["SERVER_PORT"]	80
    _SERVER["REMOTE_ADDR"]	127.0.0.1
    _SERVER["DOCUMENT_ROOT"]	C:/wamp/www/
    _SERVER["SERVER_ADMIN"]	admin@localhost
    _SERVER["SCRIPT_FILENAME"]	C:/wamp/www/ezus/test.php
    _SERVER["REMOTE_PORT"]	52489
    _SERVER["GATEWAY_INTERFACE"]	CGI/1.1
    _SERVER["SERVER_PROTOCOL"]	HTTP/1.1
    _SERVER["REQUEST_METHOD"]	GET
    _SERVER["QUERY_STRING"]	no value
    _SERVER["REQUEST_URI"]	/ezus/test.php
    _SERVER["SCRIPT_NAME"]	/ezus/test.php
    _SERVER["PHP_SELF"]	/ezus/test.php
    _SERVER["PATH_TRANSLATED"]	C:/wamp/www/ezus/test.php
     
    PHP License
     
    This program is free software; you can redistribute it and/or modify it under the terms of the PHP License as published by the PHP Group and included in the distribution in the file: LICENSE
     
    This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
     
    If you did not receive a copy of the PHP license, or have any questions about PHP licensing, please contact license@php.net.
    Voici le résultat de mon phpinfo. Qu'est ce qui doit être activé? Je suis allé dans mon phpini et j'ai activé la ligne

    extension=php_domxml.dll

    Merci
    Le hardware est la partie de l'ordinateur qui prend les coups quand le software se plante.
    Théoriquement, ça fonctionne, sauf erreur....

  4. #4
    Membre chevronné Avatar de nosferapti
    Profil pro
    Inscrit en
    Avril 2009
    Messages
    1 157
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2009
    Messages : 1 157
    Points : 1 895
    Points
    1 895
    Par défaut
    il y a le module "xml" qui est installé donc essaye ça pour lire le fichier XML :
    http://php.net/xml
    GNAP !

Discussions similaires

  1. [XML] PHP et Lecture Fichier XML
    Par cgeourjon dans le forum Bibliothèques et frameworks
    Réponses: 1
    Dernier message: 21/10/2010, 14h31
  2. [PHP 5.0] chemin en PHP : non lecture des espaces
    Par zabdaniel dans le forum Langage
    Réponses: 4
    Dernier message: 22/04/2009, 10h46
  3. [PHP-JS] Lecture du Port USB
    Par toons18 dans le forum Langage
    Réponses: 13
    Dernier message: 05/10/2006, 01h15
  4. [PHP-JS] Lecture des options d'un select
    Par licorne dans le forum Langage
    Réponses: 25
    Dernier message: 09/03/2006, 17h05

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo