Created
September 29, 2011 22:32
-
-
Save hobodave/1252125 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** All magic files on my system */ | |
| $files = array( | |
| '/usr/share/magic', | |
| '/usr/share/magic.mime', | |
| '/usr/share/file/magic', | |
| '/usr/share/file/magic.mgc', | |
| '/usr/share/file/magic.mime', | |
| '/usr/share/file/magic.mime.mgc', | |
| '/usr/share/misc/magic', | |
| ); | |
| /** Double Check my ENV and ini */ | |
| var_dump($_ENV,ini_get_all()); | |
| /* Proper Identification */ | |
| $fi = finfo_open(FILEINFO_MIME_TYPE); | |
| echo finfo_file($fi, 'Mepiform.jpg'), ' -- no path --', PHP_EOL; | |
| /** All these fail */ | |
| foreach ($files as $f) { | |
| $fi = finfo_open(FILEINFO_MIME_TYPE, $f); | |
| echo finfo_file($fi, 'Mepiform.jpg'), " -- $f -- ", PHP_EOL; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [dabdemoulaie@webdev1 ~]$ php finfo.php | |
| array(0) { | |
| } | |
| array(277) { | |
| ["allow_call_time_pass_reference"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["allow_url_fopen"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["allow_url_include"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["always_populate_raw_post_data"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["apc.cache_by_default"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["apc.canonicalize"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.coredump_unmap"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.enable_cli"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.enabled"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.file_md5"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.file_update_protection"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "2" | |
| ["local_value"]=> | |
| string(1) "2" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.filters"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| NULL | |
| ["local_value"]=> | |
| NULL | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.gc_ttl"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(4) "3600" | |
| ["local_value"]=> | |
| string(4) "3600" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.include_once_override"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.lazy_classes"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.lazy_functions"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.max_file_size"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(2) "1M" | |
| ["local_value"]=> | |
| string(2) "1M" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.mmap_file_mask"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(15) "/tmp/apc.OcHUxm" | |
| ["local_value"]=> | |
| string(15) "/tmp/apc.OcHUxm" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.num_files_hint"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(4) "1024" | |
| ["local_value"]=> | |
| string(4) "1024" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.preload_path"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| NULL | |
| ["local_value"]=> | |
| NULL | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.report_autofilter"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.rfc1867"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.rfc1867_freq"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.rfc1867_name"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(19) "APC_UPLOAD_PROGRESS" | |
| ["local_value"]=> | |
| string(19) "APC_UPLOAD_PROGRESS" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.rfc1867_prefix"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(7) "upload_" | |
| ["local_value"]=> | |
| string(7) "upload_" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.rfc1867_ttl"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(4) "3600" | |
| ["local_value"]=> | |
| string(4) "3600" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.serializer"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(7) "default" | |
| ["local_value"]=> | |
| string(7) "default" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.shm_segments"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.shm_size"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(4) "128M" | |
| ["local_value"]=> | |
| string(4) "128M" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.slam_defense"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.stat"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.stat_ctime"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.ttl"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(4) "7200" | |
| ["local_value"]=> | |
| string(4) "7200" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.use_request_time"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["apc.user_entries_hint"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(4) "4096" | |
| ["local_value"]=> | |
| string(4) "4096" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.user_ttl"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(4) "7200" | |
| ["local_value"]=> | |
| string(4) "7200" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["apc.write_lock"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["arg_separator.input"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "&" | |
| ["local_value"]=> | |
| string(1) "&" | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["arg_separator.output"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "&" | |
| ["local_value"]=> | |
| string(1) "&" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["asp_tags"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["assert.active"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["assert.bail"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["assert.callback"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| NULL | |
| ["local_value"]=> | |
| NULL | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["assert.quiet_eval"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["assert.warning"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["auto_append_file"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["auto_detect_line_endings"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["auto_globals_jit"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["auto_prepend_file"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["browscap"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| NULL | |
| ["local_value"]=> | |
| NULL | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["curl.cainfo"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["date.default_latitude"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(7) "31.7667" | |
| ["local_value"]=> | |
| string(7) "31.7667" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["date.default_longitude"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(7) "35.2333" | |
| ["local_value"]=> | |
| string(7) "35.2333" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["date.sunrise_zenith"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(9) "90.583333" | |
| ["local_value"]=> | |
| string(9) "90.583333" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["date.sunset_zenith"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(9) "90.583333" | |
| ["local_value"]=> | |
| string(9) "90.583333" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["date.timezone"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(15) "America/Chicago" | |
| ["local_value"]=> | |
| string(15) "America/Chicago" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["default_charset"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["default_mimetype"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(9) "text/html" | |
| ["local_value"]=> | |
| string(9) "text/html" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["default_socket_timeout"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(2) "60" | |
| ["local_value"]=> | |
| string(2) "60" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["define_syslog_variables"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["disable_classes"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["disable_functions"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["display_errors"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["display_startup_errors"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["doc_root"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| NULL | |
| ["local_value"]=> | |
| NULL | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["docref_ext"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["docref_root"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["enable_dl"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["error_append_string"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| NULL | |
| ["local_value"]=> | |
| NULL | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["error_log"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| NULL | |
| ["local_value"]=> | |
| NULL | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["error_prepend_string"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| NULL | |
| ["local_value"]=> | |
| NULL | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["error_reporting"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(5) "30711" | |
| ["local_value"]=> | |
| string(5) "30711" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["exif.decode_jis_intel"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(3) "JIS" | |
| ["local_value"]=> | |
| string(3) "JIS" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["exif.decode_jis_motorola"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(3) "JIS" | |
| ["local_value"]=> | |
| string(3) "JIS" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["exif.decode_unicode_intel"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(7) "UCS-2LE" | |
| ["local_value"]=> | |
| string(7) "UCS-2LE" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["exif.decode_unicode_motorola"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(7) "UCS-2BE" | |
| ["local_value"]=> | |
| string(7) "UCS-2BE" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["exif.encode_jis"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["exif.encode_unicode"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(11) "ISO-8859-15" | |
| ["local_value"]=> | |
| string(11) "ISO-8859-15" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["exit_on_timeout"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["expose_php"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["extension_dir"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(22) "/usr/lib64/php/modules" | |
| ["local_value"]=> | |
| string(22) "/usr/lib64/php/modules" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["file_uploads"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["filter.default"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(10) "unsafe_raw" | |
| ["local_value"]=> | |
| string(10) "unsafe_raw" | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["filter.default_flags"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| NULL | |
| ["local_value"]=> | |
| NULL | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["from"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| NULL | |
| ["local_value"]=> | |
| NULL | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["gd.jpeg_ignore_warning"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["highlight.bg"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(7) "#FFFFFF" | |
| ["local_value"]=> | |
| string(7) "#FFFFFF" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["highlight.comment"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(7) "#FF8000" | |
| ["local_value"]=> | |
| string(7) "#FF8000" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["highlight.default"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(7) "#0000BB" | |
| ["local_value"]=> | |
| string(7) "#0000BB" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["highlight.html"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(7) "#000000" | |
| ["local_value"]=> | |
| string(7) "#000000" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["highlight.keyword"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(7) "#007700" | |
| ["local_value"]=> | |
| string(7) "#007700" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["highlight.string"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(7) "#DD0000" | |
| ["local_value"]=> | |
| string(7) "#DD0000" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["html_errors"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["iconv.input_encoding"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(10) "ISO-8859-1" | |
| ["local_value"]=> | |
| string(10) "ISO-8859-1" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["iconv.internal_encoding"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(10) "ISO-8859-1" | |
| ["local_value"]=> | |
| string(10) "ISO-8859-1" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["iconv.output_encoding"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(10) "ISO-8859-1" | |
| ["local_value"]=> | |
| string(10) "ISO-8859-1" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["igbinary.compact_strings"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["ignore_repeated_errors"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["ignore_repeated_source"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["ignore_user_abort"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["implicit_flush"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["include_path"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(32) ".:/usr/share/pear:/usr/share/php" | |
| ["local_value"]=> | |
| string(32) ".:/usr/share/pear:/usr/share/php" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["log_errors"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["log_errors_max_len"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(4) "1024" | |
| ["local_value"]=> | |
| string(4) "1024" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["magic_quotes_gpc"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["magic_quotes_runtime"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["magic_quotes_sybase"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["mail.add_x_header"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["mail.force_extra_parameters"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| NULL | |
| ["local_value"]=> | |
| NULL | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["mail.log"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| NULL | |
| ["local_value"]=> | |
| NULL | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["max_execution_time"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["max_file_uploads"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(2) "20" | |
| ["local_value"]=> | |
| string(2) "20" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["max_input_nesting_level"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(2) "64" | |
| ["local_value"]=> | |
| string(2) "64" | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["max_input_time"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(2) "-1" | |
| ["local_value"]=> | |
| string(2) "-1" | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["memcache.allow_failover"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["memcache.chunk_size"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(5) "32768" | |
| ["local_value"]=> | |
| string(5) "32768" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["memcache.compress_threshold"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(5) "20000" | |
| ["local_value"]=> | |
| string(5) "20000" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["memcache.default_port"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(5) "11211" | |
| ["local_value"]=> | |
| string(5) "11211" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["memcache.hash_function"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(5) "crc32" | |
| ["local_value"]=> | |
| string(5) "crc32" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["memcache.hash_strategy"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(10) "consistent" | |
| ["local_value"]=> | |
| string(10) "consistent" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["memcache.lock_timeout"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(2) "15" | |
| ["local_value"]=> | |
| string(2) "15" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["memcache.max_failover_attempts"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(2) "20" | |
| ["local_value"]=> | |
| string(2) "20" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["memcache.protocol"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(5) "ascii" | |
| ["local_value"]=> | |
| string(5) "ascii" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["memcache.redundancy"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["memcache.session_redundancy"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "2" | |
| ["local_value"]=> | |
| string(1) "2" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["memory_limit"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(4) "256M" | |
| ["local_value"]=> | |
| string(4) "256M" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["mysql.allow_local_infile"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["mysql.allow_persistent"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["mysql.connect_timeout"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(2) "60" | |
| ["local_value"]=> | |
| string(2) "60" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["mysql.default_host"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["mysql.default_password"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["mysql.default_port"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["mysql.default_socket"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(25) "/var/lib/mysql/mysql.sock" | |
| ["local_value"]=> | |
| string(25) "/var/lib/mysql/mysql.sock" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["mysql.default_user"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["mysql.max_links"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(2) "-1" | |
| ["local_value"]=> | |
| string(2) "-1" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["mysql.max_persistent"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(2) "-1" | |
| ["local_value"]=> | |
| string(2) "-1" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["mysql.trace_mode"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["mysqli.allow_local_infile"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["mysqli.allow_persistent"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["mysqli.default_host"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["mysqli.default_port"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(4) "3306" | |
| ["local_value"]=> | |
| string(4) "3306" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["mysqli.default_pw"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["mysqli.default_socket"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| NULL | |
| ["local_value"]=> | |
| NULL | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["mysqli.default_user"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["mysqli.max_links"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(2) "-1" | |
| ["local_value"]=> | |
| string(2) "-1" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["mysqli.max_persistent"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(2) "-1" | |
| ["local_value"]=> | |
| string(2) "-1" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["mysqli.reconnect"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["open_basedir"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| NULL | |
| ["local_value"]=> | |
| NULL | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["output_buffering"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["output_handler"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| NULL | |
| ["local_value"]=> | |
| NULL | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["pcre.backtrack_limit"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(7) "1000000" | |
| ["local_value"]=> | |
| string(7) "1000000" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["pcre.recursion_limit"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(6) "100000" | |
| ["local_value"]=> | |
| string(6) "100000" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["pdo_mysql.default_socket"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(25) "/var/lib/mysql/mysql.sock" | |
| ["local_value"]=> | |
| string(25) "/var/lib/mysql/mysql.sock" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["phar.cache_list"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["phar.readonly"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["phar.require_hash"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["post_max_size"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(2) "8M" | |
| ["local_value"]=> | |
| string(2) "8M" | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["precision"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(2) "14" | |
| ["local_value"]=> | |
| string(2) "14" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["realpath_cache_size"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(3) "16K" | |
| ["local_value"]=> | |
| string(3) "16K" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["realpath_cache_ttl"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(3) "120" | |
| ["local_value"]=> | |
| string(3) "120" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["register_argc_argv"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["register_globals"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["register_long_arrays"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["report_memleaks"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["report_zend_debug"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["request_order"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(2) "GP" | |
| ["local_value"]=> | |
| string(2) "GP" | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["safe_mode"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["safe_mode_allowed_env_vars"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(4) "PHP_" | |
| ["local_value"]=> | |
| string(4) "PHP_" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["safe_mode_exec_dir"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["safe_mode_gid"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["safe_mode_include_dir"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["safe_mode_protected_env_vars"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(15) "LD_LIBRARY_PATH" | |
| ["local_value"]=> | |
| string(15) "LD_LIBRARY_PATH" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["sendmail_from"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| NULL | |
| ["local_value"]=> | |
| NULL | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["sendmail_path"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(24) "/usr/sbin/sendmail -t -i" | |
| ["local_value"]=> | |
| string(24) "/usr/sbin/sendmail -t -i" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["serialize_precision"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(3) "100" | |
| ["local_value"]=> | |
| string(3) "100" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["session.auto_start"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["session.bug_compat_42"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["session.bug_compat_warn"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["session.cache_expire"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(3) "180" | |
| ["local_value"]=> | |
| string(3) "180" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["session.cache_limiter"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(7) "nocache" | |
| ["local_value"]=> | |
| string(7) "nocache" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["session.cookie_domain"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["session.cookie_httponly"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["session.cookie_lifetime"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["session.cookie_path"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "/" | |
| ["local_value"]=> | |
| string(1) "/" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["session.cookie_secure"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["session.entropy_file"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["session.entropy_length"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["session.gc_divisor"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(4) "1000" | |
| ["local_value"]=> | |
| string(4) "1000" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["session.gc_maxlifetime"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(4) "1440" | |
| ["local_value"]=> | |
| string(4) "1440" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["session.gc_probability"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["session.hash_bits_per_character"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "5" | |
| ["local_value"]=> | |
| string(1) "5" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["session.hash_function"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["session.name"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(9) "PHPSESSID" | |
| ["local_value"]=> | |
| string(9) "PHPSESSID" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["session.referer_check"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["session.save_handler"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(8) "memcache" | |
| ["local_value"]=> | |
| string(8) "memcache" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["session.save_path"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(74) "tcp://172.22.10.20:11211?persistent=1&weight=1&timeout=1&retry_interval=15" | |
| ["local_value"]=> | |
| string(74) "tcp://172.22.10.20:11211?persistent=1&weight=1&timeout=1&retry_interval=15" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["session.serialize_handler"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(8) "igbinary" | |
| ["local_value"]=> | |
| string(8) "igbinary" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["session.use_cookies"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["session.use_only_cookies"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["session.use_trans_sid"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["short_open_tag"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["SMTP"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(9) "localhost" | |
| ["local_value"]=> | |
| string(9) "localhost" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["smtp_port"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(2) "25" | |
| ["local_value"]=> | |
| string(2) "25" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["soap.wsdl_cache"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["soap.wsdl_cache_dir"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(4) "/tmp" | |
| ["local_value"]=> | |
| string(4) "/tmp" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["soap.wsdl_cache_enabled"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["soap.wsdl_cache_limit"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "5" | |
| ["local_value"]=> | |
| string(1) "5" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["soap.wsdl_cache_ttl"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(5) "86400" | |
| ["local_value"]=> | |
| string(5) "86400" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["sql.safe_mode"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["sqlite3.extension_dir"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| NULL | |
| ["local_value"]=> | |
| NULL | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["track_errors"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["unserialize_callback_func"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["upload_max_filesize"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(2) "2M" | |
| ["local_value"]=> | |
| string(2) "2M" | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["upload_tmp_dir"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| NULL | |
| ["local_value"]=> | |
| NULL | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["url_rewriter.tags"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(51) "a=href,area=href,frame=src,input=src,form=fakeentry" | |
| ["local_value"]=> | |
| string(51) "a=href,area=href,frame=src,input=src,form=fakeentry" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["user_agent"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| NULL | |
| ["local_value"]=> | |
| NULL | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["user_dir"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["user_ini.cache_ttl"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(3) "300" | |
| ["local_value"]=> | |
| string(3) "300" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["user_ini.filename"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(9) ".user.ini" | |
| ["local_value"]=> | |
| string(9) ".user.ini" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["variables_order"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(4) "GPCS" | |
| ["local_value"]=> | |
| string(4) "GPCS" | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["xdebug.auto_trace"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.collect_assignments"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.collect_includes"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.collect_params"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.collect_return"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.collect_vars"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.default_enable"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.dump.COOKIE"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| NULL | |
| ["local_value"]=> | |
| NULL | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.dump.ENV"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| NULL | |
| ["local_value"]=> | |
| NULL | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.dump.FILES"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| NULL | |
| ["local_value"]=> | |
| NULL | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.dump.GET"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| NULL | |
| ["local_value"]=> | |
| NULL | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.dump.POST"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| NULL | |
| ["local_value"]=> | |
| NULL | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.dump.REQUEST"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| NULL | |
| ["local_value"]=> | |
| NULL | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.dump.SERVER"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| NULL | |
| ["local_value"]=> | |
| NULL | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.dump.SESSION"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| NULL | |
| ["local_value"]=> | |
| NULL | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.dump_globals"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.dump_once"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.dump_undefined"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.extended_info"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["xdebug.file_link_format"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.idekey"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(7) "default" | |
| ["local_value"]=> | |
| string(12) "dabdemoulaie" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["xdebug.manual_url"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(18) "http://www.php.net" | |
| ["local_value"]=> | |
| string(18) "http://www.php.net" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.max_nesting_level"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(3) "100" | |
| ["local_value"]=> | |
| string(3) "100" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.overload_var_dump"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["xdebug.profiler_aggregate"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["xdebug.profiler_append"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["xdebug.profiler_enable"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["xdebug.profiler_enable_trigger"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["xdebug.profiler_output_dir"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(4) "/tmp" | |
| ["local_value"]=> | |
| string(4) "/tmp" | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["xdebug.profiler_output_name"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(17) "cachegrind.out.%p" | |
| ["local_value"]=> | |
| string(17) "cachegrind.out.%p" | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["xdebug.remote_autostart"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.remote_connect_back"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["xdebug.remote_cookie_expire_time"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(4) "3600" | |
| ["local_value"]=> | |
| string(4) "3600" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.remote_enable"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(6) | |
| } | |
| ["xdebug.remote_handler"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(4) "dbgp" | |
| ["local_value"]=> | |
| string(4) "dbgp" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.remote_host"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(13) "172.22.10.108" | |
| ["local_value"]=> | |
| string(13) "172.22.10.108" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.remote_log"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.remote_mode"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(3) "req" | |
| ["local_value"]=> | |
| string(3) "req" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.remote_port"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(4) "9000" | |
| ["local_value"]=> | |
| string(4) "9000" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.scream"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.show_exception_trace"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.show_local_vars"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.show_mem_delta"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.trace_format"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.trace_options"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.trace_output_dir"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(4) "/tmp" | |
| ["local_value"]=> | |
| string(4) "/tmp" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.trace_output_name"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(8) "trace.%R" | |
| ["local_value"]=> | |
| string(8) "trace.%R" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.var_display_max_children"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(3) "128" | |
| ["local_value"]=> | |
| string(3) "128" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.var_display_max_data"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(3) "512" | |
| ["local_value"]=> | |
| string(3) "512" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xdebug.var_display_max_depth"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "3" | |
| ["local_value"]=> | |
| string(1) "3" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xmlrpc_error_number"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["xmlrpc_errors"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "0" | |
| ["local_value"]=> | |
| string(1) "0" | |
| ["access"]=> | |
| int(4) | |
| } | |
| ["y2k_compliance"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["zend.enable_gc"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(1) "1" | |
| ["local_value"]=> | |
| string(1) "1" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["zlib.output_compression"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["zlib.output_compression_level"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(2) "-1" | |
| ["local_value"]=> | |
| string(2) "-1" | |
| ["access"]=> | |
| int(7) | |
| } | |
| ["zlib.output_handler"]=> | |
| array(3) { | |
| ["global_value"]=> | |
| string(0) "" | |
| ["local_value"]=> | |
| string(0) "" | |
| ["access"]=> | |
| int(7) | |
| } | |
| } | |
| image/jpeg -- no path -- | |
| PHP Warning: finfo_open(): Failed to load magic database at '/usr/share/file/magic'. in /home/dabdemoulaie/finfo.php on line 21 | |
| PHP Stack trace: | |
| PHP 1. {main}() /home/dabdemoulaie/finfo.php:0 | |
| PHP 2. finfo_open() /home/dabdemoulaie/finfo.php:21 | |
| PHP Warning: finfo_file() expects parameter 1 to be resource, boolean given in /home/dabdemoulaie/finfo.php on line 22 | |
| PHP Stack trace: | |
| PHP 1. {main}() /home/dabdemoulaie/finfo.php:0 | |
| PHP 2. finfo_file() /home/dabdemoulaie/finfo.php:22 | |
| -- /usr/share/magic -- | |
| application/octet-stream -- /usr/share/magic.mime -- | |
| PHP Warning: finfo_open(): Failed to load magic database at '/usr/share/file/magic'. in /home/dabdemoulaie/finfo.php on line 21 | |
| PHP Stack trace: | |
| PHP 1. {main}() /home/dabdemoulaie/finfo.php:0 | |
| PHP 2. finfo_open() /home/dabdemoulaie/finfo.php:21 | |
| PHP Warning: finfo_file() expects parameter 1 to be resource, boolean given in /home/dabdemoulaie/finfo.php on line 22 | |
| PHP Stack trace: | |
| PHP 1. {main}() /home/dabdemoulaie/finfo.php:0 | |
| PHP 2. finfo_file() /home/dabdemoulaie/finfo.php:22 | |
| -- /usr/share/file/magic -- | |
| PHP Warning: finfo_open(): Failed to load magic database at '/usr/share/file/magic.mgc'. in /home/dabdemoulaie/finfo.php on line 21 | |
| PHP Stack trace: | |
| PHP 1. {main}() /home/dabdemoulaie/finfo.php:0 | |
| PHP 2. finfo_open() /home/dabdemoulaie/finfo.php:21 | |
| PHP Warning: finfo_file() expects parameter 1 to be resource, boolean given in /home/dabdemoulaie/finfo.php on line 22 | |
| PHP Stack trace: | |
| PHP 1. {main}() /home/dabdemoulaie/finfo.php:0 | |
| PHP 2. finfo_file() /home/dabdemoulaie/finfo.php:22 | |
| -- /usr/share/file/magic.mgc -- | |
| application/octet-stream -- /usr/share/file/magic.mime -- | |
| PHP Warning: finfo_open(): Failed to load magic database at '/usr/share/file/magic.mime.mgc'. in /home/dabdemoulaie/finfo.php on line 21 | |
| PHP Stack trace: | |
| PHP 1. {main}() /home/dabdemoulaie/finfo.php:0 | |
| PHP 2. finfo_open() /home/dabdemoulaie/finfo.php:21 | |
| PHP Warning: finfo_file() expects parameter 1 to be resource, boolean given in /home/dabdemoulaie/finfo.php on line 22 | |
| PHP Stack trace: | |
| PHP 1. {main}() /home/dabdemoulaie/finfo.php:0 | |
| PHP 2. finfo_file() /home/dabdemoulaie/finfo.php:22 | |
| -- /usr/share/file/magic.mime.mgc -- | |
| PHP Warning: finfo_open(): Failed to load magic database at '/usr/share/file/magic'. in /home/dabdemoulaie/finfo.php on line 21 | |
| PHP Stack trace: | |
| PHP 1. {main}() /home/dabdemoulaie/finfo.php:0 | |
| PHP 2. finfo_open() /home/dabdemoulaie/finfo.php:21 | |
| PHP Warning: finfo_file() expects parameter 1 to be resource, boolean given in /home/dabdemoulaie/finfo.php on line 22 | |
| PHP Stack trace: | |
| PHP 1. {main}() /home/dabdemoulaie/finfo.php:0 | |
| PHP 2. finfo_file() /home/dabdemoulaie/finfo.php:22 | |
| -- /usr/share/misc/magic -- | |
| [dabdemoulaie@webdev1 ~]$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment