├── stub.c ├── sapi ├── cgi │ ├── php.sym │ └── CREDITS ├── thttpd │ ├── stub.c │ ├── CREDITS │ └── php.sym ├── pi3web │ ├── php.sym │ └── CREDITS ├── cli │ ├── TODO │ ├── cli_win32.c │ ├── CREDITS │ └── tests │ │ └── skipif.inc ├── apache │ ├── php.sym │ ├── mod_php5.exp │ ├── CREDITS │ ├── php_apache.c │ └── php_apache_http.h ├── apache2filter │ ├── php.sym │ └── CREDITS ├── apache2handler │ ├── php.sym │ └── CREDITS ├── apache_hooks │ ├── php.sym │ ├── mod_php5.exp │ ├── php_apache.c │ └── CREDITS ├── embed │ ├── CREDITS │ └── EXPERIMENTAL ├── tux │ ├── CREDITS │ └── php.sym ├── litespeed │ └── CREDITS ├── phttpd │ ├── CREDITS │ ├── php.sym │ └── README ├── webjames │ └── CREDITS ├── aolserver │ ├── CREDITS │ └── php.sym ├── caudium │ └── CREDITS ├── milter │ ├── CREDITS │ ├── TODO │ └── EXPERIMENTAL ├── isapi │ ├── CREDITS │ ├── php.sym │ └── php5isapi.def ├── nsapi │ └── CREDITS ├── continuity │ └── CREDITS └── fpm │ └── CREDITS ├── ext ├── fileinfo │ ├── EXPERIMENTAL │ ├── libmagic │ │ └── config.h │ ├── tests │ │ ├── resources │ │ │ ├── test.awk │ │ │ ├── dir.zip │ │ │ ├── test.bmp │ │ │ ├── test.gif │ │ │ ├── test.jpg │ │ │ └── test.png │ │ ├── magic │ │ └── skipif.inc │ ├── Makefile.frag │ └── CREDITS ├── pdo_oci │ ├── EXPERIMENTAL │ └── CREDITS ├── skeleton │ ├── CREDITS │ └── EXPERIMENTAL ├── pdo_odbc │ ├── EXPERIMENTAL │ └── CREDITS ├── phar │ ├── tests │ │ ├── bug53872 │ │ │ ├── second.txt │ │ │ ├── first.txt │ │ │ └── third.txt │ │ ├── files │ │ │ ├── extracted.inc │ │ │ ├── md5.phar │ │ │ ├── blog.phar │ │ │ ├── sha1.phar │ │ │ ├── zfapp.tgz │ │ │ ├── nophar.phar │ │ │ ├── notbogus.zip │ │ │ ├── openssl.phar │ │ │ ├── sha256.phar │ │ │ ├── sha512.phar │ │ │ ├── include_path.phar │ │ │ ├── include_path2.phar │ │ │ ├── frontcontroller.phar │ │ │ ├── frontcontroller10.phar │ │ │ ├── frontcontroller11.phar │ │ │ ├── frontcontroller12.phar │ │ │ ├── frontcontroller13.phar │ │ │ ├── frontcontroller14.phar │ │ │ ├── frontcontroller16.phar │ │ │ ├── frontcontroller17.phar │ │ │ ├── frontcontroller18.phar │ │ │ ├── frontcontroller19.phar │ │ │ ├── frontcontroller2.phar │ │ │ ├── frontcontroller3.phar │ │ │ ├── frontcontroller4.phar │ │ │ ├── frontcontroller5.phar │ │ │ ├── frontcontroller6.phar │ │ │ ├── frontcontroller7.phar │ │ │ ├── frontcontroller8.phar │ │ │ ├── frontcontroller9.phar │ │ │ ├── pear2coverage.phar.php │ │ │ └── stuboflength1041.phar │ │ ├── cache_list │ │ │ └── files │ │ │ │ ├── extracted.inc │ │ │ │ ├── blog.phar │ │ │ │ ├── md5.phar │ │ │ │ ├── sha1.phar │ │ │ │ ├── zfapp.tgz │ │ │ │ ├── nophar.phar │ │ │ │ ├── openssl.phar │ │ │ │ ├── sha256.phar │ │ │ │ ├── sha512.phar │ │ │ │ ├── write.phar │ │ │ │ ├── write10.phar │ │ │ │ ├── write11.phar │ │ │ │ ├── write12.phar │ │ │ │ ├── write13.phar │ │ │ │ ├── write14.phar │ │ │ │ ├── write15.phar │ │ │ │ ├── write16.phar │ │ │ │ ├── write17.phar │ │ │ │ ├── write18.phar │ │ │ │ ├── write19.phar │ │ │ │ ├── write2.phar │ │ │ │ ├── write20.phar │ │ │ │ ├── write21.phar │ │ │ │ ├── write22.phar │ │ │ │ ├── write23.phar │ │ │ │ ├── write24.phar │ │ │ │ ├── write25.phar │ │ │ │ ├── write3.phar │ │ │ │ ├── write4.phar │ │ │ │ ├── write5.phar │ │ │ │ ├── write6.phar │ │ │ │ ├── write7.phar │ │ │ │ ├── write8.phar │ │ │ │ ├── write9.phar │ │ │ │ ├── frontcontroller.phar │ │ │ │ ├── frontcontroller10.phar │ │ │ │ ├── frontcontroller11.phar │ │ │ │ ├── frontcontroller12.phar │ │ │ │ ├── frontcontroller13.phar │ │ │ │ ├── frontcontroller14.phar │ │ │ │ ├── frontcontroller16.phar │ │ │ │ ├── frontcontroller17.phar │ │ │ │ ├── frontcontroller18.phar │ │ │ │ ├── frontcontroller19.phar │ │ │ │ ├── frontcontroller2.phar │ │ │ │ ├── frontcontroller3.phar │ │ │ │ ├── frontcontroller4.phar │ │ │ │ ├── frontcontroller5.phar │ │ │ │ ├── frontcontroller6.phar │ │ │ │ ├── frontcontroller7.phar │ │ │ │ ├── frontcontroller8.phar │ │ │ │ └── frontcontroller9.phar │ │ ├── zip │ │ │ └── files │ │ │ │ ├── bzip2.zip │ │ │ │ ├── odt.odt │ │ │ │ ├── stdin.zip │ │ │ │ ├── test.odt │ │ │ │ ├── zip.zip │ │ │ │ ├── count1.zip │ │ │ │ ├── count2.zip │ │ │ │ ├── disknumber.zip │ │ │ │ ├── encrypted.zip │ │ │ │ ├── nozipend.zip │ │ │ │ ├── cdir_offset.zip │ │ │ │ ├── filecomment.zip │ │ │ │ ├── badalias1.phar.zip │ │ │ │ ├── badalias2.phar.zip │ │ │ │ ├── badalias3.phar.zip │ │ │ │ ├── badalias4.phar.zip │ │ │ │ ├── badalias5.phar.zip │ │ │ │ ├── bz2_alias.phar.zip │ │ │ │ ├── compress_unsup1.zip │ │ │ │ ├── compress_unsup2.zip │ │ │ │ ├── compress_unsup3.zip │ │ │ │ ├── compress_unsup4.zip │ │ │ │ ├── compress_unsup5.zip │ │ │ │ ├── compress_unsup6.zip │ │ │ │ ├── compress_unsup7.zip │ │ │ │ ├── compress_unsup9.zip │ │ │ │ ├── metadata.phar.zip │ │ │ │ ├── truncfilename.zip │ │ │ │ ├── zlib_alias.phar.zip │ │ │ │ ├── compress_unsup10.zip │ │ │ │ ├── compress_unsup14.zip │ │ │ │ ├── compress_unsup18.zip │ │ │ │ ├── compress_unsup19.zip │ │ │ │ ├── compress_unsup97.zip │ │ │ │ ├── compress_unsup98.zip │ │ │ │ ├── extralen_toolong.zip │ │ │ │ ├── frontcontroller.phar.zip │ │ │ │ ├── compress_unsupunknown.zip │ │ │ │ ├── frontcontroller10.phar.zip │ │ │ │ ├── frontcontroller11.phar.zip │ │ │ │ ├── frontcontroller12.phar.zip │ │ │ │ ├── frontcontroller2.phar.zip │ │ │ │ ├── frontcontroller3.phar.zip │ │ │ │ ├── frontcontroller4.phar.zip │ │ │ │ ├── frontcontroller5.phar.zip │ │ │ │ ├── frontcontroller6.phar.zip │ │ │ │ ├── frontcontroller7.phar.zip │ │ │ │ ├── frontcontroller8.phar.zip │ │ │ │ └── frontcontroller9.phar.zip │ │ └── tar │ │ │ └── files │ │ │ ├── P1-1.0.0.tgz │ │ │ ├── Net_URL-1.0.15.tgz │ │ │ ├── frontcontroller.phar.tar │ │ │ ├── Structures_Graph-1.0.3.tgz │ │ │ ├── frontcontroller10.phar.tar │ │ │ ├── frontcontroller11.phar.tar │ │ │ ├── frontcontroller12.phar.tar │ │ │ ├── frontcontroller2.phar.tar │ │ │ ├── frontcontroller3.phar.tar │ │ │ ├── frontcontroller4.phar.tar │ │ │ ├── frontcontroller5.phar.tar │ │ │ ├── frontcontroller6.phar.tar │ │ │ ├── frontcontroller7.phar.tar │ │ │ ├── frontcontroller8.phar.tar │ │ │ └── frontcontroller9.phar.tar │ └── CREDITS ├── tidy │ ├── tests │ │ ├── 016.tcfg │ │ ├── 005.html │ │ ├── 007.html │ │ ├── 013.html │ │ ├── 015.html │ │ ├── 016.html │ │ ├── 007.phpt │ │ └── 020.phpt │ └── CREDITS ├── curl │ ├── tests │ │ ├── curl_testdata1.txt │ │ └── curl_testdata2.txt │ └── CREDITS ├── standard │ ├── tests │ │ ├── image │ │ │ ├── blank_file.bmp │ │ │ ├── test.txt │ │ │ ├── test.gif │ │ │ ├── 200x100.bmp │ │ │ ├── 200x100.gif │ │ │ ├── 200x100.jpg │ │ │ ├── 200x100.png │ │ │ ├── 200x100.swf │ │ │ ├── 200x100.tif │ │ │ ├── 246x247.png │ │ │ ├── 384x385.png │ │ │ ├── 75x50.wbmp │ │ │ ├── testAPP.jpg │ │ │ ├── bug13213.jpg │ │ │ ├── test13pix.swf │ │ │ ├── test1pix.bmp │ │ │ ├── test1pix.jp2 │ │ │ ├── test1pix.jpc │ │ │ ├── test1pix.jpg │ │ │ ├── test2pix.gif │ │ │ ├── test4pix.gif │ │ │ ├── test4pix.iff │ │ │ ├── test4pix.png │ │ │ ├── test4pix.psd │ │ │ ├── test4pix.swf │ │ │ ├── test4pix.tif │ │ │ ├── 200x100_unknown.unknown │ │ │ └── 2x2mm.tif │ │ ├── file │ │ │ ├── test3.csv │ │ │ ├── bug32160.txt │ │ │ ├── windows_acls │ │ │ │ ├── tiny.bat │ │ │ │ └── tiny.exe │ │ │ ├── test2.csv │ │ │ ├── bug30362.txt │ │ │ ├── stream_rfc2397_003.gif │ │ │ ├── bug40501.csv │ │ │ └── bug38086.txt │ │ ├── class_object │ │ │ ├── AutoLoaded.inc │ │ │ ├── AutoTrait.inc │ │ │ └── AutoInterface.inc │ │ ├── general_functions │ │ │ ├── get_included_files_inc1.inc │ │ │ ├── 004.data │ │ │ ├── bug49692.ini │ │ │ ├── 002.phpt │ │ │ ├── 006.phpt │ │ │ ├── get_included_files_inc2.inc │ │ │ ├── get_included_files_inc3.inc │ │ │ ├── gettype_settype_variation5.phpt │ │ │ ├── gettype_settype_variation6.phpt │ │ │ ├── gettype_settype_variation7.phpt │ │ │ ├── gettype_settype_variation8.phpt │ │ │ └── bug52138.data │ │ ├── misc │ │ │ ├── browscap.ini │ │ │ ├── get_browser_basic.phpt │ │ │ ├── get_browser_error.phpt │ │ │ └── get_browser_variation1.phpt │ │ ├── serialize │ │ │ ├── 006.phpt │ │ │ └── autoload_interface.p5c │ │ ├── strings │ │ │ ├── chr_ord.phpt │ │ │ ├── printf.phpt │ │ │ ├── str_pad.phpt │ │ │ ├── strcmp.phpt │ │ │ ├── strlen.phpt │ │ │ ├── strpos.phpt │ │ │ ├── strstr.phpt │ │ │ ├── bug20934.phpt │ │ │ ├── bug37244.phpt │ │ │ ├── md5_file.phpt │ │ │ ├── htmlentities.phpt │ │ │ ├── printf_64bit.phpt │ │ │ ├── str_repeat.phpt │ │ │ ├── str_replace.phpt │ │ │ ├── strcasecmp.phpt │ │ │ ├── strtoupper.phpt │ │ │ ├── htmlentities04.phpt │ │ │ ├── htmlentities08.phpt │ │ │ ├── htmlentities13.phpt │ │ │ ├── htmlentities14.phpt │ │ │ ├── htmlentities15.phpt │ │ │ ├── htmlentities23.phpt │ │ │ ├── htmlentities24.phpt │ │ │ ├── strspn_variation5.phpt │ │ │ ├── strspn_variation9.phpt │ │ │ ├── sprintf_variation21.phpt │ │ │ ├── sprintf_variation22.phpt │ │ │ ├── sprintf_variation27.phpt │ │ │ ├── sprintf_variation53.phpt │ │ │ ├── strcspn_variation5.phpt │ │ │ ├── strcspn_variation9.phpt │ │ │ ├── vfprintf_variation9.phpt │ │ │ ├── vprintf_variation10.phpt │ │ │ ├── vprintf_variation9.phpt │ │ │ ├── vsprintf_variation9.phpt │ │ │ ├── vfprintf_variation10.phpt │ │ │ ├── vsprintf_variation10.phpt │ │ │ ├── get_html_translation_table_basic4.phpt │ │ │ └── get_html_translation_table_basic6.phpt │ │ └── array │ │ │ └── locale_sort.phpt │ ├── html_tables │ │ ├── ents_basic.txt │ │ └── ents_basic_apos.txt │ ├── string.c │ ├── syslog.c │ ├── uniqid.c │ ├── uniqid.h │ ├── php_math.h │ ├── soundex.c │ ├── php_string.h │ ├── versioning.c │ ├── php_ext_syslog.h │ ├── php_versioning.h │ └── formatted_print.c ├── xmlrpc │ ├── CREDITS │ └── EXPERIMENTAL ├── bcmath │ ├── CREDITS │ └── libbcmath │ │ ├── AUTHORS │ │ └── NEWS ├── bz2 │ ├── CREDITS │ ├── tests │ │ ├── 003.txt.bz2 │ │ ├── 004_1.txt.bz2 │ │ └── 004_2.txt.bz2 │ └── php_bz2.def ├── dom │ ├── examples │ │ └── relaxNG.xml │ ├── CREDITS │ ├── tests │ │ ├── skipif.inc │ │ ├── book.xml.gz │ │ ├── book-not-a-schema.xsd │ │ ├── nsdoc.xml │ │ └── dom.xml │ └── TODO ├── pspell │ ├── CREDITS │ └── tests │ │ └── wordlist.txt ├── wddx │ └── CREDITS ├── zip │ ├── CREDITS │ ├── examples │ │ ├── too.php │ │ ├── test.odt │ │ ├── test.zip │ │ ├── test1.zip │ │ ├── test_im.zip │ │ └── test_with_comment.zip │ ├── tests │ │ ├── test.zip │ │ ├── bug40228.zip │ │ ├── bug49072.zip │ │ ├── bug7658.odt │ │ ├── bug8009.zip │ │ ├── binarynull.zip │ │ ├── pecl12414.zip │ │ ├── test_procedural.zip │ │ └── test_with_comment.zip │ └── TODO ├── ctype │ ├── CREDITS │ └── tests │ │ └── skipif.inc ├── gettext │ ├── CREDITS │ └── tests │ │ └── locale │ │ ├── en │ │ ├── LC_CTYPE │ │ │ ├── dgettextTest_switched.po │ │ │ ├── dgettextTest.po │ │ │ ├── dngettextTest.po │ │ │ ├── dgettextTest.mo │ │ │ ├── dngettextTest.mo │ │ │ ├── dgettextTest_switch.po │ │ │ └── dgettextTest_switch.mo │ │ └── LC_MESSAGES │ │ │ ├── dgettextTest.po │ │ │ ├── dngettextTest.po │ │ │ ├── messages.mo │ │ │ ├── dgettextTest.mo │ │ │ ├── dngettextTest.mo │ │ │ ├── dgettextTest_switch.po │ │ │ └── dgettextTest_switch.mo │ │ └── fi │ │ └── LC_MESSAGES │ │ └── messages.mo ├── intl │ ├── resourcebundle │ │ └── TODO │ ├── tests │ │ ├── _files │ │ │ ├── res_index.txt │ │ │ └── resourcebundle │ │ │ │ ├── es.res │ │ │ │ ├── root.res │ │ │ │ └── res_index.res │ │ └── msgfmt_format_error4.phpt │ └── CREDITS ├── mssql │ └── CREDITS ├── posix │ └── CREDITS ├── recode │ └── CREDITS ├── xmlreader │ ├── CREDITS │ ├── examples │ │ └── relaxNG.xml │ └── tests │ │ ├── 012.dtd │ │ └── 012.xml ├── com_dotnet │ └── CREDITS ├── date │ ├── CREDITS │ └── lib │ │ └── timelib_config.h.win32 ├── dba │ ├── CREDITS │ ├── tests │ │ ├── test.cdb │ │ └── clean.inc │ ├── php_cdb.h │ ├── php_db1.h │ ├── php_db2.h │ ├── php_db3.h │ ├── php_db4.h │ ├── php_dbm.h │ ├── php_gdbm.h │ ├── php_ndbm.h │ ├── php_qdbm.h │ └── php_inifile.h ├── exif │ ├── test.php │ ├── CREDITS │ └── tests │ │ ├── test1.jpg │ │ ├── test2.jpg │ │ ├── test3.jpg │ │ ├── test4.jpg │ │ ├── test5.jpg │ │ ├── test6.jpg │ │ ├── bug34704.jpg │ │ ├── bug48378.jpeg │ │ ├── bug60150.jpg │ │ ├── exif003.phpt │ │ ├── image007.jpg │ │ ├── image008.jpg │ │ ├── image009.jpg │ │ ├── image010.jpg │ │ ├── image011.jpg │ │ ├── image012.jpg │ │ ├── image013.jpg │ │ ├── image014.jpg │ │ ├── image015.jpg │ │ ├── image016.tiff │ │ ├── image017.tiff │ │ ├── image018.tiff │ │ ├── image020.tiff │ │ ├── image021.tiff │ │ ├── image022.tiff │ │ ├── image023.tiff │ │ ├── image024.jpg │ │ ├── image025.jpg │ │ ├── image026.tiff │ │ ├── image027.tiff │ │ ├── bug54002_1.jpeg │ │ └── bug54002_2.jpeg ├── ftp │ └── CREDITS ├── gmp │ └── CREDITS ├── json │ ├── CREDITS │ └── utf8_to_utf16.h ├── mysqli │ ├── TODO │ ├── CREDITS │ └── tests │ │ ├── skipif.inc │ │ ├── mysqli_real_escape_string_big5.phpt │ │ ├── mysqli_real_escape_string_euckr.phpt │ │ ├── mysqli_real_escape_string_gb2312.phpt │ │ ├── skipifemb.inc │ │ ├── mysqli_real_escape_string_eucjpms.phpt │ │ ├── skipifnotemb.inc │ │ └── skipifunicode.inc ├── readline │ └── CREDITS ├── spl │ ├── CREDITS │ ├── tests │ │ ├── fileobject_001b.txt │ │ ├── fileobject_001a.txt │ │ ├── testclass │ │ ├── testclass.inc │ │ ├── testclass.php.inc │ │ ├── SplFileObject_testinput.csv │ │ └── testclass.class.inc │ └── TODO ├── sysvsem │ └── CREDITS ├── pcntl │ ├── CREDITS │ └── package.xml ├── xsl │ ├── CREDITS │ └── tests │ │ ├── xslt011.xml │ │ ├── xslt.xml │ │ ├── skipif.inc │ │ ├── xslt.xsl.gz │ │ ├── xslt001.phpt │ │ ├── xslt002.phpt │ │ ├── xslt003.phpt │ │ ├── xslt005.phpt │ │ ├── xslt006.phpt │ │ ├── xslt007.phpt │ │ ├── xslt008.phpt │ │ └── xslt012.phpt ├── iconv │ ├── tests │ │ ├── iconv_stream_filter.txt │ │ ├── Quotes.UTF-8 │ │ ├── iconv001.phpt │ │ ├── eucjp2sjis.phpt │ │ ├── eucjp2utf8.phpt │ │ ├── iconv_strlen.phpt │ │ ├── iconv_strpos.phpt │ │ ├── iconv_strrpos.phpt │ │ ├── iconv_substr.phpt │ │ ├── translit-utf8.phpt │ │ ├── eucjp2iso2022jp.phpt │ │ ├── iconv_mime_encode.phpt │ │ ├── ob_iconv_handler.phpt │ │ ├── translit-failure.phpt │ │ └── skipif.inc │ ├── CREDITS │ └── php_iconv.def ├── mcrypt │ ├── CREDITS │ └── TODO ├── pcre │ ├── CREDITS │ ├── tests │ │ ├── 007.phpt │ │ ├── locales.phpt │ │ ├── skip_002.inc │ │ └── skip_003.inc │ └── pcrelib │ │ ├── ChangeLog │ │ ├── testdata │ │ ├── testinput1 │ │ ├── testinput3 │ │ ├── testinput8 │ │ ├── testoutput1 │ │ ├── testoutput3 │ │ └── testoutput8 │ │ └── COPYING ├── pdo_sqlite │ └── CREDITS ├── sysvmsg │ └── CREDITS ├── sysvshm │ └── CREDITS ├── enchant │ ├── CREDITS │ └── tests │ │ ├── hindi_incorrect.txt │ │ └── hindi_correct.txt ├── mbstring │ ├── libmbfl │ │ ├── tests │ │ │ ├── strcut.tests │ │ │ │ ├── Makefile.am │ │ │ │ └── ujis.exp │ │ │ ├── conv_kana.tests │ │ │ │ ├── Makefile.am │ │ │ │ └── conv_kana.exp │ │ │ ├── strwidth.tests │ │ │ │ └── Makefile.am │ │ │ ├── sample.c │ │ │ └── conv_encoding.tests │ │ │ │ ├── ujis_sjis.exp │ │ │ │ └── cp51932_cp50220raw.exp │ │ └── buildconf │ ├── oniguruma │ │ ├── AUTHORS │ │ ├── testc.c │ │ ├── README.ja │ │ ├── doc │ │ │ ├── API.ja │ │ │ ├── FAQ.ja │ │ │ └── RE.ja │ │ └── win32 │ │ │ └── testc.c │ ├── CREDITS │ ├── tests │ │ ├── common.inc │ │ ├── mb_ereg.phpt │ │ ├── bug26639.phpt │ │ ├── casefold.phpt │ │ ├── mb_strcut.phpt │ │ ├── mb_stripos.phpt │ │ ├── mb_strlen.phpt │ │ ├── mb_strpos.phpt │ │ ├── mb_substr.phpt │ │ ├── overload01.phpt │ │ ├── overload02.phpt │ │ ├── simpletest.phpt │ │ ├── mb_strwidth.phpt │ │ ├── mb_http_input.phpt │ │ ├── mb_send_mail02.phpt │ │ ├── mb_send_mail04.phpt │ │ ├── mb_send_mail05.phpt │ │ ├── mb_send_mail06.phpt │ │ ├── mb_send_mail07.phpt │ │ ├── mb_strimwidth.phpt │ │ ├── mb_substr_count.phpt │ │ ├── zend_multibyte-01.phpt │ │ ├── zend_multibyte-04.phpt │ │ ├── zend_multibyte-08.phpt │ │ ├── mb_convert_encoding.phpt │ │ ├── mb_convert_variables.phpt │ │ ├── mb_detect_encoding.phpt │ │ ├── mb_ereg_search_pos.phpt │ │ ├── mb_ereg_search_xxx.phpt │ │ ├── mb_output_handler_euc_jp.phpt │ │ └── mb_output_handler_shift_jis.phpt │ └── README_PHP3-i18n-ja ├── mysql │ ├── CREDITS │ └── tests │ │ ├── skipif.inc │ │ └── skipifnotmysqlnd.inc ├── session │ ├── CREDITS │ └── tests │ │ └── session_id_error3.phpt ├── xmlwriter │ └── CREDITS ├── ereg │ ├── CREDITS │ └── ereg.c ├── mysqlnd │ └── CREDITS ├── soap │ ├── CREDITS │ ├── tests │ │ ├── bugs │ │ │ ├── bug28969.phpt │ │ │ ├── bug38005.phpt │ │ │ ├── bug38067.phpt │ │ │ └── skipif.inc │ │ ├── skipif.inc │ │ ├── soap12 │ │ │ └── skipif.inc │ │ └── interop │ │ │ ├── Round2 │ │ │ ├── Base │ │ │ │ └── skipif.inc │ │ │ └── GroupB │ │ │ │ └── skipif.inc │ │ │ ├── Round3 │ │ │ ├── GroupD │ │ │ │ └── skipif.inc │ │ │ ├── GroupE │ │ │ │ └── skipif.inc │ │ │ └── GroupF │ │ │ │ └── skipif.inc │ │ │ └── Round4 │ │ │ ├── GroupG │ │ │ └── skipif.inc │ │ │ ├── GroupH │ │ │ └── skipif.inc │ │ │ └── GroupI │ │ │ ├── skipif.inc │ │ │ └── r4_groupI_xsd_006w.phpt │ └── interop │ │ └── config.php.dist ├── sybase_ct │ └── CREDITS ├── tokenizer │ └── CREDITS ├── xml │ ├── CREDITS │ ├── xml.c │ ├── php_xml.h │ └── tests │ │ ├── inc.ent │ │ ├── xml006.phpt │ │ └── xml007.phpt ├── interbase │ └── CREDITS ├── pdo_dblib │ └── CREDITS ├── pdo_firebird │ ├── CREDITS │ └── tests │ │ └── skipif.inc ├── shmop │ └── CREDITS ├── sqlite3 │ ├── CREDITS │ └── tests │ │ ├── new_db.inc │ │ └── skipif.inc ├── oci8 │ ├── oci8.c │ ├── oci8_lob.c │ ├── php_oci8.h │ ├── tests │ │ ├── lob_009.txt │ │ ├── test.gif │ │ └── drop_type.inc │ ├── php_oci8_int.h │ ├── oci8_collection.c │ ├── oci8_interface.c │ ├── oci8_statement.c │ └── CREDITS ├── simplexml │ ├── CREDITS │ ├── tests │ │ └── sxe.ent │ └── examples │ │ ├── security.xml │ │ └── security.php ├── odbc │ ├── php_odbc.c │ ├── php_odbc.h │ ├── CREDITS │ ├── php_odbc_includes.h │ └── tests │ │ └── config.inc ├── openssl │ └── CREDITS ├── pdo_pgsql │ └── CREDITS ├── calendar │ ├── jewish.c │ ├── CREDITS │ ├── calendar.c │ └── tests │ │ ├── jdtojewish.phpt │ │ └── skipif.inc ├── gd │ ├── tests │ │ ├── php.gif │ │ ├── src.gd2 │ │ ├── src.png │ │ ├── src.wbmp │ │ ├── test.png │ │ ├── Tuffy.ttf │ │ ├── crafted.gd2 │ │ ├── bug37346.gif │ │ ├── bug37360.gif │ │ ├── bug38112.gif │ │ ├── bug39780.png │ │ ├── bug43121.gif │ │ ├── conv_test.gif │ │ ├── conv_test.png │ │ ├── libgd00101.gd │ │ ├── test8859.ttf │ │ ├── conv_test.jpeg │ │ ├── libgd00086.png │ │ └── libgd00094.xbm │ ├── libgd │ │ └── gdtestft.c │ └── CREDITS ├── pgsql │ ├── CREDITS │ └── tests │ │ └── php.gif ├── ldap │ ├── CREDITS │ └── tests │ │ └── skipif.inc ├── sockets │ └── CREDITS ├── filter │ ├── CREDITS │ └── tests │ │ └── 001.phpt ├── zlib │ ├── CREDITS │ └── tests │ │ ├── 004.txt.gz │ │ ├── ob_001.phpt │ │ ├── ob_003.phpt │ │ ├── ob_004.phpt │ │ ├── bug55544.phpt │ │ ├── bug55544-win.phpt │ │ └── zlib_filter_deflate2.phpt ├── hash │ ├── CREDITS │ └── tests │ │ └── skip_mhash.inc ├── libxml │ ├── CREDITS │ └── tests │ │ └── test.xml ├── pdo │ ├── tests │ │ ├── bug_36798.phpt │ │ └── pdo.inc │ └── CREDITS ├── pdo_mysql │ └── CREDITS ├── reflection │ ├── CREDITS │ └── tests │ │ └── included4.inc ├── snmp │ ├── CREDITS │ └── tests │ │ └── clean.inc └── imap │ └── CREDITS ├── stamp-h.in ├── scripts └── dev │ ├── generate-phpt │ └── src │ │ ├── codeSnippets │ │ ├── loopClose.txt │ │ ├── commentEnd.txt │ │ ├── commentStart.txt │ │ ├── loopStart.txt │ │ ├── skipif64b.txt │ │ ├── skipifnot64b.txt │ │ ├── skipifwin.txt │ │ ├── skipifnotwin.txt │ │ └── int.txt │ │ ├── texts │ │ ├── testTypeNotSpecified.txt │ │ ├── functionOrMethodNotSpecified.txt │ │ ├── methodNotSpecified.txt │ │ ├── unknownClass.txt │ │ ├── unknownMethod.txt │ │ └── unknownFunction.txt │ │ └── setup │ │ └── exceptions │ │ ├── gtUnknownSectionException.php │ │ ├── gtMissingOptionsException.php │ │ ├── gtUnknownOptionException.php │ │ └── gtMissingArgumentException.php │ └── generate-phpt.phar ├── tests ├── lang │ ├── 015.inc │ ├── bug38579.inc │ ├── inc.inc │ ├── include_files │ │ ├── echo.inc │ │ ├── eval.inc │ │ └── function.inc │ ├── inc_throw.inc │ ├── 016.inc │ ├── 015.phpt │ ├── 001.phpt │ ├── comments2.phpt │ ├── 026.phpt │ ├── bug27443.phpt │ ├── 027.phpt │ ├── bison1.phpt │ ├── bug44654.phpt │ ├── include_variation1.phpt │ ├── 002.phpt │ ├── 013.phpt │ ├── 016.phpt │ ├── bug30726.phpt │ └── 009.phpt ├── run-test │ ├── test001.phpt │ ├── test003.phpt │ ├── test002.phpt │ └── test009.phpt ├── basic │ ├── 022.phpt │ ├── 029.phpt │ ├── 001.phpt │ ├── 010.phpt │ ├── 007.phpt │ ├── 008.phpt │ ├── 009.phpt │ ├── 006.phpt │ └── 002.phpt ├── classes │ ├── interface_optional_arg_003.inc │ ├── constants_basic_003.inc │ ├── autoload_derived.p5c │ ├── autoload_interface.p5c │ ├── autoload_root.p5c │ └── autoload_implements.p5c ├── output │ ├── ob_018.phpt │ ├── ob_001.phpt │ ├── ob_002.phpt │ └── ob_004.phpt ├── strings │ └── 002.phpt └── func │ └── 001.phpt ├── Zend ├── tests │ ├── unset.inc │ ├── 014.inc │ ├── ns_069.inc │ ├── bug54804.inc │ ├── ns_067.inc │ ├── bug46665_autoload.inc │ ├── constants │ │ ├── fixtures │ │ │ ├── folder1 │ │ │ │ ├── fixture.php │ │ │ │ ├── subfolder1 │ │ │ │ │ └── fixture.php │ │ │ │ ├── subfolder2 │ │ │ │ │ └── fixture.php │ │ │ │ ├── subfolder3 │ │ │ │ │ └── fixture.php │ │ │ │ └── subfolder4 │ │ │ │ │ └── fixture.php │ │ │ ├── folder2 │ │ │ │ ├── fixture.php │ │ │ │ ├── subfolder1 │ │ │ │ │ └── fixture.php │ │ │ │ ├── subfolder2 │ │ │ │ │ └── fixture.php │ │ │ │ ├── subfolder3 │ │ │ │ │ └── fixture.php │ │ │ │ └── subfolder4 │ │ │ │ │ └── fixture.php │ │ │ ├── folder3 │ │ │ │ ├── fixture.php │ │ │ │ ├── subfolder1 │ │ │ │ │ └── fixture.php │ │ │ │ ├── subfolder2 │ │ │ │ │ └── fixture.php │ │ │ │ ├── subfolder3 │ │ │ │ │ └── fixture.php │ │ │ │ └── subfolder4 │ │ │ │ │ └── fixture.php │ │ │ └── folder4 │ │ │ │ ├── fixture.php │ │ │ │ ├── subfolder1 │ │ │ │ └── fixture.php │ │ │ │ ├── subfolder2 │ │ │ │ └── fixture.php │ │ │ │ ├── subfolder3 │ │ │ │ └── fixture.php │ │ │ │ └── subfolder4 │ │ │ │ └── fixture.php │ │ └── dir-constant-eval.phpt │ ├── bug39542 │ │ └── bug39542.php │ ├── ns_022.inc │ ├── multibyte │ │ ├── multibyte_encoding_001.phpt │ │ ├── multibyte_encoding_003.phpt │ │ ├── multibyte_encoding_004.phpt │ │ ├── multibyte_encoding_005.phpt │ │ └── multibyte_encoding_006.phpt │ ├── ns_024.phpt │ ├── bug61095.phpt │ ├── bug61225.phpt │ ├── ns_061.phpt │ ├── ns_065.inc │ ├── bug41401.phpt │ ├── ns_014.phpt │ ├── ns_023.phpt │ ├── ns_044.phpt │ └── bug43027.phpt ├── zend.ico └── Makefile.frag ├── php.gif ├── svnclean.bat ├── EXTENSIONS ├── win32 ├── build │ ├── configure.bat │ ├── php.ico │ └── template.rc ├── php5ts.rc2 ├── php5dllts.rc2 ├── php5ts_cli.rc2 ├── unistd.h ├── pws-php5cgi.reg └── pws-php5isapi.reg ├── main ├── php_sprintf.c └── build-defs.h.in ├── travis └── ext │ ├── mysql │ └── setup.sh │ ├── mysqli │ └── setup.sh │ ├── pdo_mysql │ └── setup.sh │ ├── pdo_pgsql │ └── setup.sh │ └── curl │ └── setup.sh ├── CREDITS ├── TSRM ├── acinclude.m4 ├── TODO ├── config.w32 └── tsrm_strtok_r.h ├── snapshot ├── README.WIN32-BUILD-SYSTEM └── footer /stub.c: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sapi/cgi/php.sym: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sapi/thttpd/stub.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sapi/pi3web/php.sym: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/fileinfo/EXPERIMENTAL: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/pdo_oci/EXPERIMENTAL: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/skeleton/CREDITS: -------------------------------------------------------------------------------- 1 | extname -------------------------------------------------------------------------------- /ext/skeleton/EXPERIMENTAL: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sapi/cli/TODO: -------------------------------------------------------------------------------- 1 | TODO: 2 | 3 | -------------------------------------------------------------------------------- /stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /ext/pdo_odbc/EXPERIMENTAL: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /ext/phar/tests/bug53872/second.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/tidy/tests/016.tcfg: -------------------------------------------------------------------------------- 1 | clean: yes 2 | -------------------------------------------------------------------------------- /sapi/apache/php.sym: -------------------------------------------------------------------------------- 1 | php5_module 2 | -------------------------------------------------------------------------------- /ext/curl/tests/curl_testdata1.txt: -------------------------------------------------------------------------------- 1 | CURL1 2 | -------------------------------------------------------------------------------- /ext/curl/tests/curl_testdata2.txt: -------------------------------------------------------------------------------- 1 | CURL2 2 | -------------------------------------------------------------------------------- /ext/standard/tests/image/blank_file.bmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/tidy/tests/005.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ext/tidy/tests/007.html: -------------------------------------------------------------------------------- 1 | testing 2 | -------------------------------------------------------------------------------- /ext/tidy/tests/013.html: -------------------------------------------------------------------------------- 1 | testing 2 | -------------------------------------------------------------------------------- /ext/tidy/tests/015.html: -------------------------------------------------------------------------------- 1 | testing 2 | -------------------------------------------------------------------------------- /ext/xmlrpc/CREDITS: -------------------------------------------------------------------------------- 1 | xmlrpc 2 | Dan Libby 3 | -------------------------------------------------------------------------------- /sapi/apache/mod_php5.exp: -------------------------------------------------------------------------------- 1 | php5_module 2 | -------------------------------------------------------------------------------- /sapi/apache2filter/php.sym: -------------------------------------------------------------------------------- 1 | php5_module 2 | -------------------------------------------------------------------------------- /sapi/apache2handler/php.sym: -------------------------------------------------------------------------------- 1 | php5_module 2 | -------------------------------------------------------------------------------- /sapi/apache_hooks/php.sym: -------------------------------------------------------------------------------- 1 | php5_module 2 | -------------------------------------------------------------------------------- /ext/bcmath/CREDITS: -------------------------------------------------------------------------------- 1 | BC Math 2 | Andi Gutmans 3 | -------------------------------------------------------------------------------- /ext/bz2/CREDITS: -------------------------------------------------------------------------------- 1 | Bzip2 2 | Sterling Hughes 3 | -------------------------------------------------------------------------------- /ext/curl/CREDITS: -------------------------------------------------------------------------------- 1 | cURL 2 | Sterling Hughes 3 | -------------------------------------------------------------------------------- /ext/dom/examples/relaxNG.xml: -------------------------------------------------------------------------------- 1 | hello -------------------------------------------------------------------------------- /ext/pspell/CREDITS: -------------------------------------------------------------------------------- 1 | Pspell 2 | Vlad Krupin 3 | -------------------------------------------------------------------------------- /ext/standard/tests/file/test3.csv: -------------------------------------------------------------------------------- 1 | abc,de 2 | -------------------------------------------------------------------------------- /ext/wddx/CREDITS: -------------------------------------------------------------------------------- 1 | WDDX 2 | Andrei Zmievski 3 | -------------------------------------------------------------------------------- /ext/zip/CREDITS: -------------------------------------------------------------------------------- 1 | Zip 2 | Pierre-Alain Joye 3 | -------------------------------------------------------------------------------- /sapi/apache_hooks/mod_php5.exp: -------------------------------------------------------------------------------- 1 | php5_module 2 | -------------------------------------------------------------------------------- /sapi/embed/CREDITS: -------------------------------------------------------------------------------- 1 | Embed 2 | Edin Kadribasic 3 | -------------------------------------------------------------------------------- /sapi/tux/CREDITS: -------------------------------------------------------------------------------- 1 | tux 2 | Sascha Schumann 3 | -------------------------------------------------------------------------------- /ext/ctype/CREDITS: -------------------------------------------------------------------------------- 1 | ctype 2 | Hartmut Holzgraefe 3 | -------------------------------------------------------------------------------- /ext/fileinfo/libmagic/config.h: -------------------------------------------------------------------------------- 1 | #include "php.h" 2 | -------------------------------------------------------------------------------- /ext/gettext/CREDITS: -------------------------------------------------------------------------------- 1 | GetText 2 | Alex Plotnick 3 | -------------------------------------------------------------------------------- /ext/intl/resourcebundle/TODO: -------------------------------------------------------------------------------- 1 | - var_dump support 2 | -------------------------------------------------------------------------------- /ext/mssql/CREDITS: -------------------------------------------------------------------------------- 1 | MS SQL 2 | Frank M. Kromann 3 | -------------------------------------------------------------------------------- /ext/posix/CREDITS: -------------------------------------------------------------------------------- 1 | Posix 2 | Kristian Koehntopp 3 | -------------------------------------------------------------------------------- /ext/recode/CREDITS: -------------------------------------------------------------------------------- 1 | Recode 2 | Kristian Koehntopp 3 | -------------------------------------------------------------------------------- /ext/standard/tests/file/bug32160.txt: -------------------------------------------------------------------------------- 1 | copy test 2 | -------------------------------------------------------------------------------- /ext/standard/tests/image/test.txt: -------------------------------------------------------------------------------- 1 | Testing getimagesize -------------------------------------------------------------------------------- /ext/xmlreader/CREDITS: -------------------------------------------------------------------------------- 1 | XMLReader 2 | Rob Richards 3 | -------------------------------------------------------------------------------- /ext/zip/examples/too.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/ftp/CREDITS: -------------------------------------------------------------------------------- 1 | FTP 2 | Stefan Esser, Andrew Skalski 3 | -------------------------------------------------------------------------------- /ext/gmp/CREDITS: -------------------------------------------------------------------------------- 1 | GNU GMP support 2 | Stanislav Malyshev 3 | -------------------------------------------------------------------------------- /ext/json/CREDITS: -------------------------------------------------------------------------------- 1 | JSON 2 | Omar Kilani, Scott MacVicar 3 | -------------------------------------------------------------------------------- /ext/mysqli/TODO: -------------------------------------------------------------------------------- 1 | - documentation 2 | - ini-settings 3 | -------------------------------------------------------------------------------- /ext/phar/tests/bug53872/first.txt: -------------------------------------------------------------------------------- 1 | content of first.txt 2 | -------------------------------------------------------------------------------- /ext/phar/tests/bug53872/third.txt: -------------------------------------------------------------------------------- 1 | content of third.txt 2 | -------------------------------------------------------------------------------- /ext/readline/CREDITS: -------------------------------------------------------------------------------- 1 | Readline 2 | Thies C. Arntzen 3 | -------------------------------------------------------------------------------- /ext/spl/CREDITS: -------------------------------------------------------------------------------- 1 | SPL 2 | Marcus Boerger, Etienne Kneuss 3 | -------------------------------------------------------------------------------- /ext/standard/tests/file/windows_acls/tiny.bat: -------------------------------------------------------------------------------- 1 | echo FOO 2 | -------------------------------------------------------------------------------- /ext/sysvsem/CREDITS: -------------------------------------------------------------------------------- 1 | System V Semaphores 2 | Tom May 3 | -------------------------------------------------------------------------------- /ext/xmlreader/examples/relaxNG.xml: -------------------------------------------------------------------------------- 1 | hello -------------------------------------------------------------------------------- /sapi/aolserver/CREDITS: -------------------------------------------------------------------------------- 1 | AOLserver 2 | Sascha Schumann 3 | -------------------------------------------------------------------------------- /sapi/caudium/CREDITS: -------------------------------------------------------------------------------- 1 | Caudium / Roxen 2 | David Hedbor 3 | -------------------------------------------------------------------------------- /sapi/milter/CREDITS: -------------------------------------------------------------------------------- 1 | Sendmail Milter 2 | Harald Radi 3 | -------------------------------------------------------------------------------- /sapi/tux/php.sym: -------------------------------------------------------------------------------- 1 | TUXAPI_handle_events 2 | TUXAPI_init 3 | -------------------------------------------------------------------------------- /scripts/dev/generate-phpt/src/codeSnippets/loopClose.txt: -------------------------------------------------------------------------------- 1 | } -------------------------------------------------------------------------------- /tests/lang/015.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /tests/lang/bug38579.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Zend/tests/unset.inc: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /ext/exif/CREDITS: -------------------------------------------------------------------------------- 1 | EXIF 2 | Rasmus Lerdorf, Marcus Boerger 3 | -------------------------------------------------------------------------------- /ext/pcntl/CREDITS: -------------------------------------------------------------------------------- 1 | pcntl 2 | Jason Greene, Arnaud Le Blanc 3 | -------------------------------------------------------------------------------- /ext/pdo_odbc/CREDITS: -------------------------------------------------------------------------------- 1 | ODBC driver for PDO 2 | Wez Furlong 3 | -------------------------------------------------------------------------------- /ext/tidy/CREDITS: -------------------------------------------------------------------------------- 1 | tidy 2 | John Coggeshall, Ilia Alshanetsky 3 | -------------------------------------------------------------------------------- /ext/xsl/CREDITS: -------------------------------------------------------------------------------- 1 | XSL 2 | Christian Stocker, Rob Richards 3 | -------------------------------------------------------------------------------- /sapi/aolserver/php.sym: -------------------------------------------------------------------------------- 1 | Ns_ModuleVersion 2 | Ns_ModuleInit 3 | -------------------------------------------------------------------------------- /sapi/isapi/CREDITS: -------------------------------------------------------------------------------- 1 | ISAPI 2 | Andi Gutmans, Zeev Suraski 3 | -------------------------------------------------------------------------------- /sapi/phttpd/php.sym: -------------------------------------------------------------------------------- 1 | pm_init 2 | pm_exit 3 | pm_request 4 | 5 | -------------------------------------------------------------------------------- /tests/lang/inc.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /ext/date/lib/timelib_config.h.win32: -------------------------------------------------------------------------------- 1 | # include "config.w32.h" 2 | -------------------------------------------------------------------------------- /ext/fileinfo/tests/resources/test.awk: -------------------------------------------------------------------------------- 1 | BEGIN { print "START" } 2 | -------------------------------------------------------------------------------- /ext/iconv/tests/iconv_stream_filter.txt: -------------------------------------------------------------------------------- 1 | $B$3$s$K$A$O(Biconv 2 | -------------------------------------------------------------------------------- /ext/mcrypt/CREDITS: -------------------------------------------------------------------------------- 1 | mcrypt 2 | Sascha Schumann, Derick Rethans 3 | -------------------------------------------------------------------------------- /ext/pcre/CREDITS: -------------------------------------------------------------------------------- 1 | Perl Compatible Regexps 2 | Andrei Zmievski 3 | -------------------------------------------------------------------------------- /ext/pdo_oci/CREDITS: -------------------------------------------------------------------------------- 1 | Oracle (OCI) driver for PDO 2 | Wez Furlong 3 | -------------------------------------------------------------------------------- /ext/pdo_sqlite/CREDITS: -------------------------------------------------------------------------------- 1 | SQLite 3.x driver for PDO 2 | Wez Furlong 3 | -------------------------------------------------------------------------------- /ext/phar/CREDITS: -------------------------------------------------------------------------------- 1 | PHP Archive 2 | Gregory Beaver, Marcus Boerger 3 | -------------------------------------------------------------------------------- /ext/phar/tests/files/extracted.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ext/spl/tests/fileobject_001b.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 1 3 | 2 4 | 3 5 | 4 6 | 5 -------------------------------------------------------------------------------- /ext/sysvmsg/CREDITS: -------------------------------------------------------------------------------- 1 | System V Message based IPC 2 | Wez Furlong 3 | -------------------------------------------------------------------------------- /ext/sysvshm/CREDITS: -------------------------------------------------------------------------------- 1 | System V Shared Memory 2 | Christian Cartus 3 | -------------------------------------------------------------------------------- /scripts/dev/generate-phpt/src/codeSnippets/commentEnd.txt: -------------------------------------------------------------------------------- 1 | * 2 | */ -------------------------------------------------------------------------------- /Zend/tests/014.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Zend/tests/ns_069.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/xmlwriter/CREDITS: -------------------------------------------------------------------------------- 1 | XMLWriter 2 | Rob Richards, Pierre-Alain Joye 3 | -------------------------------------------------------------------------------- /php.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/php.gif -------------------------------------------------------------------------------- /sapi/nsapi/CREDITS: -------------------------------------------------------------------------------- 1 | NSAPI 2 | Jayakumar Muthukumarasamy, Uwe Schindler 3 | -------------------------------------------------------------------------------- /scripts/dev/generate-phpt/src/codeSnippets/commentStart.txt: -------------------------------------------------------------------------------- 1 | /** 2 | * -------------------------------------------------------------------------------- /svnclean.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | cscript /nologo win32\build\cvsclean.js 3 | -------------------------------------------------------------------------------- /tests/lang/include_files/echo.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EXTENSIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/EXTENSIONS -------------------------------------------------------------------------------- /Zend/tests/bug54804.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ext/soap/CREDITS: -------------------------------------------------------------------------------- 1 | SOAP 2 | Brad Lafountain, Shane Caraveo, Dmitry Stogov 3 | -------------------------------------------------------------------------------- /ext/spl/tests/testclass.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/sybase_ct/CREDITS: -------------------------------------------------------------------------------- 1 | Sybase-CT 2 | Zeev Suraski, Tom May, Timm Friebe 3 | -------------------------------------------------------------------------------- /ext/tokenizer/CREDITS: -------------------------------------------------------------------------------- 1 | tokenizer 2 | Andrei Zmievski, Johannes Schlueter 3 | -------------------------------------------------------------------------------- /ext/xml/CREDITS: -------------------------------------------------------------------------------- 1 | XML 2 | Stig Bakken, Thies C. Arntzen, Sterling Hughes 3 | -------------------------------------------------------------------------------- /sapi/continuity/CREDITS: -------------------------------------------------------------------------------- 1 | Continuity 2 | Alex Leigh (based on nsapi code) 3 | -------------------------------------------------------------------------------- /tests/lang/inc_throw.inc: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /win32/build/configure.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | cscript /nologo configure.js %* 3 | -------------------------------------------------------------------------------- /Zend/zend.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/Zend/zend.ico -------------------------------------------------------------------------------- /ext/interbase/CREDITS: -------------------------------------------------------------------------------- 1 | InterBase 2 | Jouni Ahto, Andrew Avdeev, Ard Biesheuvel 3 | -------------------------------------------------------------------------------- /ext/pdo_dblib/CREDITS: -------------------------------------------------------------------------------- 1 | DB-LIB (MS SQL, Sybase) 2 | Wez Furlong, Frank M. Kromann 3 | -------------------------------------------------------------------------------- /ext/pdo_firebird/CREDITS: -------------------------------------------------------------------------------- 1 | Firebird/InterBase driver for PDO 2 | Ard Biesheuvel 3 | -------------------------------------------------------------------------------- /ext/shmop/CREDITS: -------------------------------------------------------------------------------- 1 | Shared Memory Operations 2 | Slava Poliakov, Ilia Alshanetsky 3 | -------------------------------------------------------------------------------- /ext/spl/tests/testclass.php.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/sqlite3/CREDITS: -------------------------------------------------------------------------------- 1 | SQLite3 2 | Scott MacVicar, Ilia Alshanetsky, Brad Dewar 3 | -------------------------------------------------------------------------------- /ext/xml/xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/xml/xml.c -------------------------------------------------------------------------------- /sapi/apache2filter/CREDITS: -------------------------------------------------------------------------------- 1 | Apache 2.0 Filter 2 | Sascha Schumann, Aaron Bannert 3 | -------------------------------------------------------------------------------- /tests/lang/016.inc: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /tests/lang/include_files/eval.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/ereg/ereg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/ereg/ereg.c -------------------------------------------------------------------------------- /ext/mbstring/CREDITS: -------------------------------------------------------------------------------- 1 | Multibyte String Functions 2 | Tsukada Takuya, Rui Hirokawa 3 | -------------------------------------------------------------------------------- /ext/mysqli/CREDITS: -------------------------------------------------------------------------------- 1 | MySQLi 2 | Zak Greant, Georg Richter, Andrey Hristov, Ulf Wendel 3 | -------------------------------------------------------------------------------- /ext/oci8/oci8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/oci8/oci8.c -------------------------------------------------------------------------------- /ext/simplexml/CREDITS: -------------------------------------------------------------------------------- 1 | SimpleXML 2 | Sterling Hughes, Marcus Boerger, Rob Richards 3 | -------------------------------------------------------------------------------- /ext/tidy/tests/016.html: -------------------------------------------------------------------------------- 1 |

testing

2 | -------------------------------------------------------------------------------- /sapi/cli/cli_win32.c: -------------------------------------------------------------------------------- 1 | #define PHP_CLI_WIN32_NO_CONSOLE 1 2 | #include "php_cli.c" 3 | -------------------------------------------------------------------------------- /sapi/thttpd/php.sym: -------------------------------------------------------------------------------- 1 | thttpd_php_request 2 | thttpd_php_init 3 | thttpd_php_shutdown 4 | -------------------------------------------------------------------------------- /win32/php5ts.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/win32/php5ts.rc2 -------------------------------------------------------------------------------- /Zend/tests/bug46665_autoload.inc: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /ext/standard/tests/class_object/AutoLoaded.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/standard/tests/class_object/AutoTrait.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/xml/php_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/xml/php_xml.h -------------------------------------------------------------------------------- /ext/xml/tests/inc.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ext/xsl/tests/xslt011.xml: -------------------------------------------------------------------------------- 1 | This is from the Input Document 2 | -------------------------------------------------------------------------------- /main/php_sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/main/php_sprintf.c -------------------------------------------------------------------------------- /tests/run-test/test001.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | EXPECT 3 | --FILE-- 4 | abc 5 | --EXPECT-- 6 | abc -------------------------------------------------------------------------------- /win32/build/php.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/win32/build/php.ico -------------------------------------------------------------------------------- /win32/php5dllts.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/win32/php5dllts.rc2 -------------------------------------------------------------------------------- /ext/bcmath/libbcmath/AUTHORS: -------------------------------------------------------------------------------- 1 | Phil Nelson wrote bcmath library. 2 | 3 | 4 | -------------------------------------------------------------------------------- /ext/calendar/jewish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/calendar/jewish.c -------------------------------------------------------------------------------- /ext/enchant/tests/hindi_incorrect.txt: -------------------------------------------------------------------------------- 1 | इस पृष्ठ में एक लिंक बनाने के लिये इस प्रतीक को खच व छड 2 | -------------------------------------------------------------------------------- /ext/gd/tests/php.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/gd/tests/php.gif -------------------------------------------------------------------------------- /ext/gd/tests/src.gd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/gd/tests/src.gd2 -------------------------------------------------------------------------------- /ext/gd/tests/src.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/gd/tests/src.png -------------------------------------------------------------------------------- /ext/gd/tests/src.wbmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/gd/tests/src.wbmp -------------------------------------------------------------------------------- /ext/gd/tests/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/gd/tests/test.png -------------------------------------------------------------------------------- /ext/pcntl/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/pcntl/package.xml -------------------------------------------------------------------------------- /ext/pgsql/CREDITS: -------------------------------------------------------------------------------- 1 | PostgreSQL 2 | Jouni Ahto, Zeev Suraski, Yasuo Ohgaki, Chris Kings-Lynne 3 | -------------------------------------------------------------------------------- /ext/simplexml/tests/sxe.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ext/standard/html_tables/ents_basic.txt: -------------------------------------------------------------------------------- 1 | quot 22 2 | amp 26 3 | #039 27 4 | lt 3C 5 | gt 3E 6 | -------------------------------------------------------------------------------- /ext/standard/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/string.c -------------------------------------------------------------------------------- /ext/standard/syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/syslog.c -------------------------------------------------------------------------------- /ext/standard/uniqid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/uniqid.c -------------------------------------------------------------------------------- /ext/standard/uniqid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/uniqid.h -------------------------------------------------------------------------------- /ext/xmlreader/tests/012.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /main/build-defs.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/main/build-defs.h.in -------------------------------------------------------------------------------- /sapi/apache/CREDITS: -------------------------------------------------------------------------------- 1 | Apache 1.3 2 | Rasmus Lerdorf, Zeev Suraski, Stig Bakken, David Sklar 3 | 4 | -------------------------------------------------------------------------------- /sapi/cgi/CREDITS: -------------------------------------------------------------------------------- 1 | CGI / FastCGI 2 | Rasmus Lerdorf, Stig Bakken, Shane Caraveo, Dmitry Stogov 3 | -------------------------------------------------------------------------------- /scripts/dev/generate-phpt/src/codeSnippets/loopStart.txt: -------------------------------------------------------------------------------- 1 | foreach ( $variation_array as $var ) { -------------------------------------------------------------------------------- /tests/basic/022.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/tests/basic/022.phpt -------------------------------------------------------------------------------- /tests/basic/029.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/tests/basic/029.phpt -------------------------------------------------------------------------------- /win32/php5ts_cli.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/win32/php5ts_cli.rc2 -------------------------------------------------------------------------------- /Zend/Makefile.frag: -------------------------------------------------------------------------------- 1 | Zend/zend_execute.lo: $(srcdir)/zend_vm_execute.h $(srcdir)/zend_vm_opcodes.h 2 | -------------------------------------------------------------------------------- /ext/bcmath/libbcmath/NEWS: -------------------------------------------------------------------------------- 1 | NEWS for bcmath library: 2 | 3 | May 2000: The library is created. 4 | -------------------------------------------------------------------------------- /ext/calendar/CREDITS: -------------------------------------------------------------------------------- 1 | Calendar 2 | Shane Caraveo, Colin Viebrock, Hartmut Holzgraefe, Wez Furlong 3 | -------------------------------------------------------------------------------- /ext/calendar/calendar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/calendar/calendar.c -------------------------------------------------------------------------------- /ext/dba/tests/test.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/dba/tests/test.cdb -------------------------------------------------------------------------------- /ext/dom/tests/skipif.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/enchant/tests/hindi_correct.txt: -------------------------------------------------------------------------------- 1 | इस पृष्ठ में एक लिंक बनाने के लिये इस प्रतीक को खीचें व छोड़ें 2 | -------------------------------------------------------------------------------- /ext/exif/tests/test1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/test1.jpg -------------------------------------------------------------------------------- /ext/exif/tests/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/test2.jpg -------------------------------------------------------------------------------- /ext/exif/tests/test3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/test3.jpg -------------------------------------------------------------------------------- /ext/exif/tests/test4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/test4.jpg -------------------------------------------------------------------------------- /ext/exif/tests/test5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/test5.jpg -------------------------------------------------------------------------------- /ext/exif/tests/test6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/test6.jpg -------------------------------------------------------------------------------- /ext/fileinfo/tests/magic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/fileinfo/tests/magic -------------------------------------------------------------------------------- /ext/gd/libgd/gdtestft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/gd/libgd/gdtestft.c -------------------------------------------------------------------------------- /ext/gd/tests/Tuffy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/gd/tests/Tuffy.ttf -------------------------------------------------------------------------------- /ext/gd/tests/crafted.gd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/gd/tests/crafted.gd2 -------------------------------------------------------------------------------- /ext/ldap/CREDITS: -------------------------------------------------------------------------------- 1 | LDAP 2 | Amitay Isaacs, Eric Warnke, Rasmus Lerdorf, Gerrit Thomson, Stig Venaas 3 | -------------------------------------------------------------------------------- /ext/oci8/php_oci8_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/oci8/php_oci8_int.h -------------------------------------------------------------------------------- /ext/oci8/tests/test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/oci8/tests/test.gif -------------------------------------------------------------------------------- /ext/odbc/CREDITS: -------------------------------------------------------------------------------- 1 | ODBC 2 | Stig Bakken, Andreas Karajannis, Frank M. Kromann, Daniel R. Kalowsky 3 | -------------------------------------------------------------------------------- /ext/pcre/tests/007.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/pcre/tests/007.phpt -------------------------------------------------------------------------------- /ext/pgsql/tests/php.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/pgsql/tests/php.gif -------------------------------------------------------------------------------- /ext/sockets/CREDITS: -------------------------------------------------------------------------------- 1 | Sockets 2 | Chris Vandomelen, Sterling Hughes, Daniel Beulshausen, Jason Greene 3 | -------------------------------------------------------------------------------- /ext/standard/html_tables/ents_basic_apos.txt: -------------------------------------------------------------------------------- 1 | quot 22 2 | amp 26 3 | apos 27 4 | lt 3C 5 | gt 3E 6 | -------------------------------------------------------------------------------- /ext/standard/php_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/php_math.h -------------------------------------------------------------------------------- /ext/standard/soundex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/soundex.c -------------------------------------------------------------------------------- /ext/standard/tests/class_object/AutoInterface.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/tidy/tests/007.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/tidy/tests/007.phpt -------------------------------------------------------------------------------- /ext/tidy/tests/020.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/tidy/tests/020.phpt -------------------------------------------------------------------------------- /ext/xsl/tests/xslt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/xsl/tests/xslt.xml -------------------------------------------------------------------------------- /ext/zip/tests/test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/zip/tests/test.zip -------------------------------------------------------------------------------- /sapi/apache/php_apache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/sapi/apache/php_apache.c -------------------------------------------------------------------------------- /tests/classes/interface_optional_arg_003.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /tests/output/ob_018.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/tests/output/ob_018.phpt -------------------------------------------------------------------------------- /tests/strings/002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/tests/strings/002.phpt -------------------------------------------------------------------------------- /travis/ext/mysql/setup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | mysql -u root -e "CREATE DATABASE IF NOT EXISTS test" 3 | -------------------------------------------------------------------------------- /travis/ext/mysqli/setup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | mysql -u root -e "CREATE DATABASE IF NOT EXISTS test" 3 | -------------------------------------------------------------------------------- /travis/ext/pdo_mysql/setup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | mysql -u root -e "CREATE DATABASE IF NOT EXISTS test" 3 | -------------------------------------------------------------------------------- /win32/build/template.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/win32/build/template.rc -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- 1 | For the list of people who've put work into PHP, please see 2 | http://www.php.net/credits.php 3 | -------------------------------------------------------------------------------- /ext/bz2/tests/003.txt.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/bz2/tests/003.txt.bz2 -------------------------------------------------------------------------------- /ext/dom/tests/book.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/dom/tests/book.xml.gz -------------------------------------------------------------------------------- /ext/fileinfo/CREDITS: -------------------------------------------------------------------------------- 1 | fileinfo 2 | Ilia Alshanetsky, Pierre Alain Joye, Scott MacVicar, Derick Rethans 3 | -------------------------------------------------------------------------------- /ext/filter/CREDITS: -------------------------------------------------------------------------------- 1 | Input Filter 2 | Rasmus Lerdorf, Derick Rethans, Pierre-Alain Joye, Ilia Alshanetsky 3 | -------------------------------------------------------------------------------- /ext/gd/tests/bug37346.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/gd/tests/bug37346.gif -------------------------------------------------------------------------------- /ext/gd/tests/bug37360.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/gd/tests/bug37360.gif -------------------------------------------------------------------------------- /ext/gd/tests/bug38112.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/gd/tests/bug38112.gif -------------------------------------------------------------------------------- /ext/gd/tests/bug39780.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/gd/tests/bug39780.png -------------------------------------------------------------------------------- /ext/gd/tests/bug43121.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/gd/tests/bug43121.gif -------------------------------------------------------------------------------- /ext/gd/tests/conv_test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/gd/tests/conv_test.gif -------------------------------------------------------------------------------- /ext/gd/tests/conv_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/gd/tests/conv_test.png -------------------------------------------------------------------------------- /ext/gd/tests/libgd00101.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/gd/tests/libgd00101.gd -------------------------------------------------------------------------------- /ext/gd/tests/test8859.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/gd/tests/test8859.ttf -------------------------------------------------------------------------------- /ext/oci8/oci8_collection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/oci8/oci8_collection.c -------------------------------------------------------------------------------- /ext/oci8/oci8_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/oci8/oci8_interface.c -------------------------------------------------------------------------------- /ext/oci8/oci8_statement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/oci8/oci8_statement.c -------------------------------------------------------------------------------- /ext/pcre/pcrelib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/pcre/pcrelib/ChangeLog -------------------------------------------------------------------------------- /ext/pspell/tests/wordlist.txt: -------------------------------------------------------------------------------- 1 | personal_ws-1.1 en 4 2 | dfnvnsafksfksf 3 | fg 4 | iufrsn 5 | jsksjfsjf 6 | -------------------------------------------------------------------------------- /ext/spl/tests/SplFileObject_testinput.csv: -------------------------------------------------------------------------------- 1 | first,second,third 2 | 1,2,3 3 | 4,5,6 4 | 7,8,9 5 | 0,0,0 6 | -------------------------------------------------------------------------------- /ext/standard/php_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/php_string.h -------------------------------------------------------------------------------- /ext/standard/tests/file/test2.csv: -------------------------------------------------------------------------------- 1 | "One","\"Two\"","Three\"","Four","\\","\\\\\\\\\\\\\\\\\\\\\\\"\\\\" 2 | -------------------------------------------------------------------------------- /ext/standard/tests/general_functions/get_included_files_inc1.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /ext/standard/versioning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/versioning.c -------------------------------------------------------------------------------- /ext/xml/tests/xml006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/xml/tests/xml006.phpt -------------------------------------------------------------------------------- /ext/xml/tests/xml007.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/xml/tests/xml007.phpt -------------------------------------------------------------------------------- /ext/xsl/tests/skipif.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ext/xsl/tests/xslt.xsl.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/xsl/tests/xslt.xsl.gz -------------------------------------------------------------------------------- /ext/xsl/tests/xslt001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/xsl/tests/xslt001.phpt -------------------------------------------------------------------------------- /ext/xsl/tests/xslt002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/xsl/tests/xslt002.phpt -------------------------------------------------------------------------------- /ext/xsl/tests/xslt003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/xsl/tests/xslt003.phpt -------------------------------------------------------------------------------- /ext/xsl/tests/xslt005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/xsl/tests/xslt005.phpt -------------------------------------------------------------------------------- /ext/xsl/tests/xslt006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/xsl/tests/xslt006.phpt -------------------------------------------------------------------------------- /ext/xsl/tests/xslt007.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/xsl/tests/xslt007.phpt -------------------------------------------------------------------------------- /ext/xsl/tests/xslt008.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/xsl/tests/xslt008.phpt -------------------------------------------------------------------------------- /ext/xsl/tests/xslt012.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/xsl/tests/xslt012.phpt -------------------------------------------------------------------------------- /ext/zip/examples/test.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/zip/examples/test.odt -------------------------------------------------------------------------------- /ext/zip/examples/test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/zip/examples/test.zip -------------------------------------------------------------------------------- /ext/zip/examples/test1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/zip/examples/test1.zip -------------------------------------------------------------------------------- /ext/zip/tests/bug40228.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/zip/tests/bug40228.zip -------------------------------------------------------------------------------- /ext/zip/tests/bug49072.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/zip/tests/bug49072.zip -------------------------------------------------------------------------------- /ext/zip/tests/bug7658.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/zip/tests/bug7658.odt -------------------------------------------------------------------------------- /ext/zip/tests/bug8009.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/zip/tests/bug8009.zip -------------------------------------------------------------------------------- /ext/zlib/CREDITS: -------------------------------------------------------------------------------- 1 | Zlib 2 | Rasmus Lerdorf, Stefan Roehrich, Zeev Suraski, Jade Nicoletti, Michael Wallner 3 | -------------------------------------------------------------------------------- /ext/zlib/tests/004.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/zlib/tests/004.txt.gz -------------------------------------------------------------------------------- /ext/zlib/tests/ob_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/zlib/tests/ob_001.phpt -------------------------------------------------------------------------------- /ext/zlib/tests/ob_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/zlib/tests/ob_003.phpt -------------------------------------------------------------------------------- /ext/zlib/tests/ob_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/zlib/tests/ob_004.phpt -------------------------------------------------------------------------------- /sapi/fpm/CREDITS: -------------------------------------------------------------------------------- 1 | FastCGI Process Manager 2 | Andrei Nigmatulin, dreamcat4, Antony Dovgal, Jerome Loyet 3 | -------------------------------------------------------------------------------- /tests/classes/constants_basic_003.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/bz2/tests/004_1.txt.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/bz2/tests/004_1.txt.bz2 -------------------------------------------------------------------------------- /ext/bz2/tests/004_2.txt.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/bz2/tests/004_2.txt.bz2 -------------------------------------------------------------------------------- /ext/ctype/tests/skipif.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ext/dom/tests/book-not-a-schema.xsd: -------------------------------------------------------------------------------- 1 | Let's see what happens upon parsing a file that doesn't contain a schema. 2 | -------------------------------------------------------------------------------- /ext/exif/tests/bug34704.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/bug34704.jpg -------------------------------------------------------------------------------- /ext/exif/tests/bug48378.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/bug48378.jpeg -------------------------------------------------------------------------------- /ext/exif/tests/bug60150.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/bug60150.jpg -------------------------------------------------------------------------------- /ext/exif/tests/exif003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/exif003.phpt -------------------------------------------------------------------------------- /ext/exif/tests/image007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/image007.jpg -------------------------------------------------------------------------------- /ext/exif/tests/image008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/image008.jpg -------------------------------------------------------------------------------- /ext/exif/tests/image009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/image009.jpg -------------------------------------------------------------------------------- /ext/exif/tests/image010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/image010.jpg -------------------------------------------------------------------------------- /ext/exif/tests/image011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/image011.jpg -------------------------------------------------------------------------------- /ext/exif/tests/image012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/image012.jpg -------------------------------------------------------------------------------- /ext/exif/tests/image013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/image013.jpg -------------------------------------------------------------------------------- /ext/exif/tests/image014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/image014.jpg -------------------------------------------------------------------------------- /ext/exif/tests/image015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/image015.jpg -------------------------------------------------------------------------------- /ext/exif/tests/image016.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/image016.tiff -------------------------------------------------------------------------------- /ext/exif/tests/image017.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/image017.tiff -------------------------------------------------------------------------------- /ext/exif/tests/image018.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/image018.tiff -------------------------------------------------------------------------------- /ext/exif/tests/image020.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/image020.tiff -------------------------------------------------------------------------------- /ext/exif/tests/image021.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/image021.tiff -------------------------------------------------------------------------------- /ext/exif/tests/image022.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/image022.tiff -------------------------------------------------------------------------------- /ext/exif/tests/image023.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/image023.tiff -------------------------------------------------------------------------------- /ext/exif/tests/image024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/image024.jpg -------------------------------------------------------------------------------- /ext/exif/tests/image025.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/image025.jpg -------------------------------------------------------------------------------- /ext/exif/tests/image026.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/image026.tiff -------------------------------------------------------------------------------- /ext/exif/tests/image027.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/image027.tiff -------------------------------------------------------------------------------- /ext/gd/tests/conv_test.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/gd/tests/conv_test.jpeg -------------------------------------------------------------------------------- /ext/gd/tests/libgd00086.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/gd/tests/libgd00086.png -------------------------------------------------------------------------------- /ext/gd/tests/libgd00094.xbm: -------------------------------------------------------------------------------- 1 | #define width 255 2 | #define height 1073741824 3 | static unsigned char bla = { 4 | -------------------------------------------------------------------------------- /ext/gettext/tests/locale/en/LC_CTYPE/dgettextTest_switched.po: -------------------------------------------------------------------------------- 1 | msgid "item" 2 | msgstr[0] "cProdukt_switched" 3 | -------------------------------------------------------------------------------- /ext/hash/CREDITS: -------------------------------------------------------------------------------- 1 | PHP hash 2 | Sara Golemon, Rasmus Lerdorf, Stefan Esser, Michael Wallner, Scott MacVicar 3 | -------------------------------------------------------------------------------- /ext/iconv/tests/iconv001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/iconv/tests/iconv001.phpt -------------------------------------------------------------------------------- /ext/libxml/CREDITS: -------------------------------------------------------------------------------- 1 | LIBXML 2 | Christian Stocker, Rob Richards, Marcus Boerger, Wez Furlong, Shane Caraveo 3 | -------------------------------------------------------------------------------- /ext/mbstring/tests/common.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/tests/common.inc -------------------------------------------------------------------------------- /ext/odbc/php_odbc_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/odbc/php_odbc_includes.h -------------------------------------------------------------------------------- /ext/pcre/tests/locales.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/pcre/tests/locales.phpt -------------------------------------------------------------------------------- /ext/pcre/tests/skip_002.inc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 15 4 | 5 | -------------------------------------------------------------------------------- /ext/standard/php_ext_syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/php_ext_syslog.h -------------------------------------------------------------------------------- /ext/standard/php_versioning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/php_versioning.h -------------------------------------------------------------------------------- /ext/zip/examples/test_im.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/zip/examples/test_im.zip -------------------------------------------------------------------------------- /ext/zip/tests/binarynull.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/zip/tests/binarynull.zip -------------------------------------------------------------------------------- /ext/zip/tests/pecl12414.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/zip/tests/pecl12414.zip -------------------------------------------------------------------------------- /ext/zlib/tests/bug55544.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/zlib/tests/bug55544.phpt -------------------------------------------------------------------------------- /sapi/apache/php_apache_http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/sapi/apache/php_apache_http.h -------------------------------------------------------------------------------- /sapi/cli/CREDITS: -------------------------------------------------------------------------------- 1 | CLI 2 | Edin Kadribasic, Marcus Boerger, Johannes Schlueter, Moriyoshi Koizumi, Xinchen Hui 3 | -------------------------------------------------------------------------------- /tests/classes/autoload_derived.p5c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/exif/tests/bug54002_1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/bug54002_1.jpeg -------------------------------------------------------------------------------- /ext/exif/tests/bug54002_2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/exif/tests/bug54002_2.jpeg -------------------------------------------------------------------------------- /ext/iconv/tests/eucjp2sjis.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/iconv/tests/eucjp2sjis.phpt -------------------------------------------------------------------------------- /ext/iconv/tests/eucjp2utf8.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/iconv/tests/eucjp2utf8.phpt -------------------------------------------------------------------------------- /ext/mbstring/oniguruma/testc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/oniguruma/testc.c -------------------------------------------------------------------------------- /ext/mbstring/tests/mb_ereg.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/tests/mb_ereg.phpt -------------------------------------------------------------------------------- /ext/phar/tests/files/blog.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/files/blog.phar -------------------------------------------------------------------------------- /ext/phar/tests/files/sha1.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/files/sha1.phar -------------------------------------------------------------------------------- /ext/phar/tests/files/zfapp.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/files/zfapp.tgz -------------------------------------------------------------------------------- /ext/spl/tests/testclass.class.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/standard/formatted_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/formatted_print.c -------------------------------------------------------------------------------- /sapi/apache_hooks/php_apache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/sapi/apache_hooks/php_apache.c -------------------------------------------------------------------------------- /sapi/isapi/php.sym: -------------------------------------------------------------------------------- 1 | GetFilterVersion 2 | HttpFilterProc 3 | GetExtensionVersion 4 | HttpExtensionProc 5 | ZSLMain 6 | -------------------------------------------------------------------------------- /scripts/dev/generate-phpt.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/scripts/dev/generate-phpt.phar -------------------------------------------------------------------------------- /Zend/tests/constants/fixtures/folder1/fixture.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /ext/iconv/tests/iconv_strlen.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/iconv/tests/iconv_strlen.phpt -------------------------------------------------------------------------------- /ext/iconv/tests/iconv_strpos.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/iconv/tests/iconv_strpos.phpt -------------------------------------------------------------------------------- /ext/iconv/tests/iconv_strrpos.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/iconv/tests/iconv_strrpos.phpt -------------------------------------------------------------------------------- /ext/iconv/tests/iconv_substr.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/iconv/tests/iconv_substr.phpt -------------------------------------------------------------------------------- /ext/iconv/tests/translit-utf8.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/iconv/tests/translit-utf8.phpt -------------------------------------------------------------------------------- /ext/mbstring/README_PHP3-i18n-ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/README_PHP3-i18n-ja -------------------------------------------------------------------------------- /ext/mbstring/oniguruma/README.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/oniguruma/README.ja -------------------------------------------------------------------------------- /ext/mbstring/oniguruma/doc/API.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/oniguruma/doc/API.ja -------------------------------------------------------------------------------- /ext/mbstring/oniguruma/doc/FAQ.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/oniguruma/doc/FAQ.ja -------------------------------------------------------------------------------- /ext/mbstring/oniguruma/doc/RE.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/oniguruma/doc/RE.ja -------------------------------------------------------------------------------- /ext/mbstring/tests/bug26639.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/tests/bug26639.phpt -------------------------------------------------------------------------------- /ext/mbstring/tests/casefold.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/tests/casefold.phpt -------------------------------------------------------------------------------- /ext/mbstring/tests/mb_strcut.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/tests/mb_strcut.phpt -------------------------------------------------------------------------------- /ext/mbstring/tests/mb_stripos.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/tests/mb_stripos.phpt -------------------------------------------------------------------------------- /ext/mbstring/tests/mb_strlen.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/tests/mb_strlen.phpt -------------------------------------------------------------------------------- /ext/mbstring/tests/mb_strpos.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/tests/mb_strpos.phpt -------------------------------------------------------------------------------- /ext/mbstring/tests/mb_substr.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/tests/mb_substr.phpt -------------------------------------------------------------------------------- /ext/mbstring/tests/overload01.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/tests/overload01.phpt -------------------------------------------------------------------------------- /ext/mbstring/tests/overload02.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/tests/overload02.phpt -------------------------------------------------------------------------------- /ext/mbstring/tests/simpletest.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/tests/simpletest.phpt -------------------------------------------------------------------------------- /ext/phar/tests/files/nophar.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/files/nophar.phar -------------------------------------------------------------------------------- /ext/phar/tests/files/notbogus.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/files/notbogus.zip -------------------------------------------------------------------------------- /ext/phar/tests/files/openssl.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/files/openssl.phar -------------------------------------------------------------------------------- /ext/phar/tests/files/sha256.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/files/sha256.phar -------------------------------------------------------------------------------- /ext/phar/tests/files/sha512.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/files/sha512.phar -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/bzip2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/bzip2.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/odt.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/odt.odt -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/stdin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/stdin.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/test.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/test.odt -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/zip.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/zip.zip -------------------------------------------------------------------------------- /ext/soap/tests/bugs/bug28969.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/soap/tests/bugs/bug28969.phpt -------------------------------------------------------------------------------- /ext/soap/tests/bugs/bug38005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/soap/tests/bugs/bug38005.phpt -------------------------------------------------------------------------------- /ext/soap/tests/bugs/bug38067.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/soap/tests/bugs/bug38067.phpt -------------------------------------------------------------------------------- /ext/soap/tests/skipif.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /ext/sqlite3/tests/skipif.inc: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /ext/standard/tests/image/test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/image/test.gif -------------------------------------------------------------------------------- /ext/zip/tests/test_procedural.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/zip/tests/test_procedural.zip -------------------------------------------------------------------------------- /ext/zlib/tests/bug55544-win.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/zlib/tests/bug55544-win.phpt -------------------------------------------------------------------------------- /sapi/apache2handler/CREDITS: -------------------------------------------------------------------------------- 1 | Apache 2.0 Handler 2 | Ian Holsman, Justin Erenkrantz (based on Apache 2.0 Filter code) 3 | -------------------------------------------------------------------------------- /sapi/cli/tests/skipif.inc: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /sapi/isapi/php5isapi.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | HttpFilterProc 3 | GetFilterVersion 4 | HttpExtensionProc 5 | GetExtensionVersion 6 | -------------------------------------------------------------------------------- /scripts/dev/generate-phpt/src/texts/testTypeNotSpecified.txt: -------------------------------------------------------------------------------- 1 | 2 | Please specify basic, error or variation tests. 3 | 4 | -------------------------------------------------------------------------------- /TSRM/acinclude.m4: -------------------------------------------------------------------------------- 1 | 2 | AC_DEFUN([AM_SET_LIBTOOL_VARIABLE],[ 3 | LIBTOOL='$(SHELL) $(top_builddir)/libtool $1' 4 | ]) 5 | 6 | -------------------------------------------------------------------------------- /ext/fileinfo/tests/resources/dir.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/fileinfo/tests/resources/dir.zip -------------------------------------------------------------------------------- /ext/iconv/tests/eucjp2iso2022jp.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/iconv/tests/eucjp2iso2022jp.phpt -------------------------------------------------------------------------------- /ext/json/utf8_to_utf16.h: -------------------------------------------------------------------------------- 1 | /* utf8_to_utf16.h */ 2 | 3 | extern int utf8_to_utf16(unsigned short *w, char p[], int length); 4 | -------------------------------------------------------------------------------- /ext/mbstring/libmbfl/tests/sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/libmbfl/tests/sample.c -------------------------------------------------------------------------------- /ext/mbstring/oniguruma/win32/testc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/oniguruma/win32/testc.c -------------------------------------------------------------------------------- /ext/mbstring/tests/mb_strwidth.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/tests/mb_strwidth.phpt -------------------------------------------------------------------------------- /ext/pcre/pcrelib/testdata/testinput1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/pcre/pcrelib/testdata/testinput1 -------------------------------------------------------------------------------- /ext/pcre/pcrelib/testdata/testinput3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/pcre/pcrelib/testdata/testinput3 -------------------------------------------------------------------------------- /ext/pcre/pcrelib/testdata/testinput8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/pcre/pcrelib/testdata/testinput8 -------------------------------------------------------------------------------- /ext/pdo_mysql/CREDITS: -------------------------------------------------------------------------------- 1 | MySQL driver for PDO 2 | George Schlossnagle, Wez Furlong, Ilia Alshanetsky, Johannes Schlueter 3 | 4 | -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/count1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/count1.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/count2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/count2.zip -------------------------------------------------------------------------------- /ext/reflection/CREDITS: -------------------------------------------------------------------------------- 1 | Reflection 2 | Marcus Boerger, Timm Friebe, George Schlossnagle, Andrei Zmievski, Johannes Schlueter 3 | -------------------------------------------------------------------------------- /ext/snmp/CREDITS: -------------------------------------------------------------------------------- 1 | SNMP 2 | Rasmus Lerdorf, Harrie Hazewinkel, Mike Jackson, Steven Lawrance, Johann Hanne, Boris Lytochkin 3 | -------------------------------------------------------------------------------- /ext/soap/tests/bugs/skipif.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /ext/soap/tests/soap12/skipif.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /ext/standard/tests/image/200x100.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/image/200x100.bmp -------------------------------------------------------------------------------- /ext/standard/tests/image/200x100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/image/200x100.gif -------------------------------------------------------------------------------- /ext/standard/tests/image/200x100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/image/200x100.jpg -------------------------------------------------------------------------------- /ext/standard/tests/image/200x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/image/200x100.png -------------------------------------------------------------------------------- /ext/standard/tests/image/200x100.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/image/200x100.swf -------------------------------------------------------------------------------- /ext/standard/tests/image/200x100.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/image/200x100.tif -------------------------------------------------------------------------------- /ext/standard/tests/image/246x247.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/image/246x247.png -------------------------------------------------------------------------------- /ext/standard/tests/image/384x385.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/image/384x385.png -------------------------------------------------------------------------------- /ext/standard/tests/image/75x50.wbmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/image/75x50.wbmp -------------------------------------------------------------------------------- /ext/standard/tests/image/testAPP.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/image/testAPP.jpg -------------------------------------------------------------------------------- /ext/standard/tests/misc/browscap.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/misc/browscap.ini -------------------------------------------------------------------------------- /ext/xmlreader/tests/012.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /ext/zip/tests/test_with_comment.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/zip/tests/test_with_comment.zip -------------------------------------------------------------------------------- /tests/func/001.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Strlen() function test 3 | --FILE-- 4 | 5 | --EXPECT-- 6 | 6 7 | -------------------------------------------------------------------------------- /Zend/tests/bug39542/bug39542.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /Zend/tests/constants/fixtures/folder1/subfolder1/fixture.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /ext/fileinfo/tests/resources/test.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/fileinfo/tests/resources/test.bmp -------------------------------------------------------------------------------- /ext/fileinfo/tests/resources/test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/fileinfo/tests/resources/test.gif -------------------------------------------------------------------------------- /ext/fileinfo/tests/resources/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/fileinfo/tests/resources/test.jpg -------------------------------------------------------------------------------- /ext/fileinfo/tests/resources/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/fileinfo/tests/resources/test.png -------------------------------------------------------------------------------- /ext/iconv/tests/iconv_mime_encode.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/iconv/tests/iconv_mime_encode.phpt -------------------------------------------------------------------------------- /ext/iconv/tests/ob_iconv_handler.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/iconv/tests/ob_iconv_handler.phpt -------------------------------------------------------------------------------- /ext/iconv/tests/translit-failure.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/iconv/tests/translit-failure.phpt -------------------------------------------------------------------------------- /ext/ldap/tests/skipif.inc: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /ext/mbstring/tests/mb_http_input.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/tests/mb_http_input.phpt -------------------------------------------------------------------------------- /ext/mbstring/tests/mb_send_mail02.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/tests/mb_send_mail02.phpt -------------------------------------------------------------------------------- /ext/mbstring/tests/mb_send_mail04.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/tests/mb_send_mail04.phpt -------------------------------------------------------------------------------- /ext/mbstring/tests/mb_send_mail05.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/tests/mb_send_mail05.phpt -------------------------------------------------------------------------------- /ext/mbstring/tests/mb_send_mail06.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/tests/mb_send_mail06.phpt -------------------------------------------------------------------------------- /ext/mbstring/tests/mb_send_mail07.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/tests/mb_send_mail07.phpt -------------------------------------------------------------------------------- /ext/mbstring/tests/mb_strimwidth.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/tests/mb_strimwidth.phpt -------------------------------------------------------------------------------- /ext/mbstring/tests/mb_substr_count.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/tests/mb_substr_count.phpt -------------------------------------------------------------------------------- /ext/mysqli/tests/skipif.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/pcre/pcrelib/testdata/testoutput1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/pcre/pcrelib/testdata/testoutput1 -------------------------------------------------------------------------------- /ext/pcre/pcrelib/testdata/testoutput3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/pcre/pcrelib/testdata/testoutput3 -------------------------------------------------------------------------------- /ext/pcre/pcrelib/testdata/testoutput8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/pcre/pcrelib/testdata/testoutput8 -------------------------------------------------------------------------------- /ext/pdo/CREDITS: -------------------------------------------------------------------------------- 1 | PHP Data Objects 2 | Wez Furlong, Marcus Boerger, Sterling Hughes, George Schlossnagle, Ilia Alshanetsky 3 | 4 | -------------------------------------------------------------------------------- /ext/phar/tests/files/include_path.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/files/include_path.phar -------------------------------------------------------------------------------- /ext/phar/tests/files/include_path2.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/files/include_path2.phar -------------------------------------------------------------------------------- /ext/phar/tests/tar/files/P1-1.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/tar/files/P1-1.0.0.tgz -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/disknumber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/disknumber.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/encrypted.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/encrypted.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/nozipend.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/nozipend.zip -------------------------------------------------------------------------------- /ext/spl/TODO: -------------------------------------------------------------------------------- 1 | This is the ToDo of ext/spl: 2 | 3 | Implement the classes/interfaces from the .inc files in 4 | directory examples. -------------------------------------------------------------------------------- /ext/standard/tests/image/bug13213.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/image/bug13213.jpg -------------------------------------------------------------------------------- /ext/standard/tests/image/test13pix.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/image/test13pix.swf -------------------------------------------------------------------------------- /ext/standard/tests/image/test1pix.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/image/test1pix.bmp -------------------------------------------------------------------------------- /ext/standard/tests/image/test1pix.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/image/test1pix.jp2 -------------------------------------------------------------------------------- /ext/standard/tests/image/test1pix.jpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/image/test1pix.jpc -------------------------------------------------------------------------------- /ext/standard/tests/image/test1pix.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/image/test1pix.jpg -------------------------------------------------------------------------------- /ext/standard/tests/image/test2pix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/image/test2pix.gif -------------------------------------------------------------------------------- /ext/standard/tests/image/test4pix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/image/test4pix.gif -------------------------------------------------------------------------------- /ext/standard/tests/image/test4pix.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/image/test4pix.iff -------------------------------------------------------------------------------- /ext/standard/tests/image/test4pix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/image/test4pix.png -------------------------------------------------------------------------------- /ext/standard/tests/image/test4pix.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/image/test4pix.psd -------------------------------------------------------------------------------- /ext/standard/tests/image/test4pix.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/image/test4pix.swf -------------------------------------------------------------------------------- /ext/standard/tests/image/test4pix.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/image/test4pix.tif -------------------------------------------------------------------------------- /ext/standard/tests/serialize/006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/serialize/006.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/chr_ord.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/chr_ord.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/printf.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/printf.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/str_pad.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/str_pad.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/strcmp.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/strcmp.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/strlen.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/strlen.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/strpos.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/strpos.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/strstr.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/strstr.phpt -------------------------------------------------------------------------------- /ext/zip/examples/test_with_comment.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/zip/examples/test_with_comment.zip -------------------------------------------------------------------------------- /tests/classes/autoload_interface.p5c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/lang/015.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Testing include 3 | --FILE-- 4 | 7 | --EXPECT-- 8 | Hello 9 | -------------------------------------------------------------------------------- /Zend/tests/ns_022.inc: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /ext/filter/tests/001.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Simple GET test 3 | --GET-- 4 | a=1 5 | --FILE-- 6 | 7 | --EXPECT-- 8 | 1 9 | -------------------------------------------------------------------------------- /ext/gd/CREDITS: -------------------------------------------------------------------------------- 1 | GD imaging 2 | Rasmus Lerdorf, Stig Bakken, Jim Winstead, Jouni Ahto, Ilia Alshanetsky, Pierre-Alain Joye, Marcus Boerger 3 | -------------------------------------------------------------------------------- /ext/gettext/tests/locale/en/LC_CTYPE/dgettextTest.po: -------------------------------------------------------------------------------- 1 | msgid "item" 2 | msgid_plural "items" 3 | msgstr[0] "Produkt" 4 | msgstr[1] "Produkte" 5 | -------------------------------------------------------------------------------- /ext/iconv/php_iconv.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | _libiconv_version 3 | libiconv_close 4 | libiconv 5 | libiconv_open 6 | libiconv_set_relocation_prefix 7 | -------------------------------------------------------------------------------- /ext/iconv/tests/skipif.inc: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /ext/intl/CREDITS: -------------------------------------------------------------------------------- 1 | Internationalization 2 | Ed Batutis, Vladimir Iordanov, Dmitry Lakhtyuk, Stanislav Malyshev, Vadim Savchuk, Kirti Velankar 3 | -------------------------------------------------------------------------------- /ext/intl/tests/_files/resourcebundle/es.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/intl/tests/_files/resourcebundle/es.res -------------------------------------------------------------------------------- /ext/mbstring/tests/mb_convert_encoding.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/tests/mb_convert_encoding.phpt -------------------------------------------------------------------------------- /ext/mbstring/tests/mb_convert_variables.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/tests/mb_convert_variables.phpt -------------------------------------------------------------------------------- /ext/mbstring/tests/mb_detect_encoding.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/tests/mb_detect_encoding.phpt -------------------------------------------------------------------------------- /ext/mbstring/tests/mb_ereg_search_pos.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/tests/mb_ereg_search_pos.phpt -------------------------------------------------------------------------------- /ext/mbstring/tests/mb_ereg_search_xxx.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/tests/mb_ereg_search_xxx.phpt -------------------------------------------------------------------------------- /ext/pcre/pcrelib/COPYING: -------------------------------------------------------------------------------- 1 | PCRE LICENCE 2 | 3 | Please see the file LICENCE in the PCRE distribution for licensing details. 4 | 5 | End 6 | -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/nophar.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/nophar.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/openssl.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/openssl.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/sha256.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/sha256.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/sha512.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/sha512.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/write.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/write.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/write10.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/write10.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/write11.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/write11.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/write12.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/write12.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/write13.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/write13.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/write14.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/write14.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/write15.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/write15.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/write16.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/write16.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/write17.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/write17.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/write18.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/write18.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/write19.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/write19.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/write2.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/write2.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/write20.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/write20.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/write21.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/write21.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/write22.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/write22.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/write23.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/write23.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/write24.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/write24.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/write25.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/write25.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/write3.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/write3.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/write4.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/write4.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/write5.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/write5.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/write6.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/write6.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/write7.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/write7.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/write8.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/write8.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/write9.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/write9.phar -------------------------------------------------------------------------------- /ext/phar/tests/files/frontcontroller10.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/files/frontcontroller10.phar -------------------------------------------------------------------------------- /ext/phar/tests/files/frontcontroller11.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/files/frontcontroller11.phar -------------------------------------------------------------------------------- /ext/phar/tests/files/frontcontroller12.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/files/frontcontroller12.phar -------------------------------------------------------------------------------- /ext/phar/tests/files/frontcontroller13.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/files/frontcontroller13.phar -------------------------------------------------------------------------------- /ext/phar/tests/files/frontcontroller14.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/files/frontcontroller14.phar -------------------------------------------------------------------------------- /ext/phar/tests/files/frontcontroller16.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/files/frontcontroller16.phar -------------------------------------------------------------------------------- /ext/phar/tests/files/frontcontroller17.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/files/frontcontroller17.phar -------------------------------------------------------------------------------- /ext/phar/tests/files/frontcontroller18.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/files/frontcontroller18.phar -------------------------------------------------------------------------------- /ext/phar/tests/files/frontcontroller19.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/files/frontcontroller19.phar -------------------------------------------------------------------------------- /ext/phar/tests/files/frontcontroller2.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/files/frontcontroller2.phar -------------------------------------------------------------------------------- /ext/phar/tests/files/frontcontroller3.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/files/frontcontroller3.phar -------------------------------------------------------------------------------- /ext/phar/tests/files/frontcontroller4.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/files/frontcontroller4.phar -------------------------------------------------------------------------------- /ext/phar/tests/files/frontcontroller5.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/files/frontcontroller5.phar -------------------------------------------------------------------------------- /ext/phar/tests/files/frontcontroller6.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/files/frontcontroller6.phar -------------------------------------------------------------------------------- /ext/phar/tests/files/frontcontroller7.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/files/frontcontroller7.phar -------------------------------------------------------------------------------- /ext/phar/tests/files/frontcontroller8.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/files/frontcontroller8.phar -------------------------------------------------------------------------------- /ext/phar/tests/files/frontcontroller9.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/files/frontcontroller9.phar -------------------------------------------------------------------------------- /ext/phar/tests/files/pear2coverage.phar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/files/pear2coverage.phar.php -------------------------------------------------------------------------------- /ext/phar/tests/files/stuboflength1041.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/files/stuboflength1041.phar -------------------------------------------------------------------------------- /ext/phar/tests/tar/files/Net_URL-1.0.15.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/tar/files/Net_URL-1.0.15.tgz -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/badalias1.phar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/badalias1.phar.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/badalias2.phar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/badalias2.phar.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/badalias3.phar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/badalias3.phar.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/badalias4.phar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/badalias4.phar.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/badalias5.phar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/badalias5.phar.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/bz2_alias.phar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/bz2_alias.phar.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/compress_unsup1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/compress_unsup1.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/compress_unsup2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/compress_unsup2.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/compress_unsup3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/compress_unsup3.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/compress_unsup4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/compress_unsup4.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/compress_unsup5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/compress_unsup5.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/compress_unsup6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/compress_unsup6.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/compress_unsup7.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/compress_unsup7.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/compress_unsup9.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/compress_unsup9.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/metadata.phar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/metadata.phar.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/truncfilename.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/truncfilename.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/zlib_alias.phar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/zlib_alias.phar.zip -------------------------------------------------------------------------------- /ext/soap/tests/interop/Round2/Base/skipif.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /ext/soap/tests/interop/Round2/GroupB/skipif.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /ext/soap/tests/interop/Round3/GroupD/skipif.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /ext/soap/tests/interop/Round3/GroupE/skipif.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /ext/soap/tests/interop/Round3/GroupF/skipif.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /ext/soap/tests/interop/Round4/GroupG/skipif.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /ext/soap/tests/interop/Round4/GroupH/skipif.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /ext/soap/tests/interop/Round4/GroupI/skipif.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /ext/standard/tests/strings/htmlentities.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/htmlentities.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/printf_64bit.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/printf_64bit.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/str_repeat.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/str_repeat.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/str_replace.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/str_replace.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/strcasecmp.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/strcasecmp.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/strtoupper.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/strtoupper.phpt -------------------------------------------------------------------------------- /sapi/phttpd/README: -------------------------------------------------------------------------------- 1 | phttpd sapi module. 2 | 3 | THIS IS BY NO MEANS COMPLETE NOR USABLE RIGHT NOW! 4 | 5 | thies@thieso.net 03.01.2000 6 | -------------------------------------------------------------------------------- /tests/basic/001.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Trivial "Hello World" test 3 | --FILE-- 4 | 5 | --EXPECT-- 6 | Hello World 7 | -------------------------------------------------------------------------------- /tests/basic/010.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Testing | and & operators 3 | --FILE-- 4 | 5 | --EXPECT-- 6 | 8 7 | -------------------------------------------------------------------------------- /tests/lang/001.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Simple If condition test 3 | --FILE-- 4 | 0) { echo "Yes"; } ?> 5 | --EXPECT-- 6 | Yes 7 | -------------------------------------------------------------------------------- /tests/output/ob_001.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | output buffering - nothing 3 | --FILE-- 4 | 7 | --EXPECT-- 8 | foo 9 | -------------------------------------------------------------------------------- /travis/ext/pdo_pgsql/setup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | export PDO_PGSQL_TEST_DSN='pgsql:host=localhost port=5432 dbname=test user=postgres password=' -------------------------------------------------------------------------------- /TSRM/TODO: -------------------------------------------------------------------------------- 1 | - Improve the lock in ts_resource_ex() in order to cover less code. 2 | This can probably be done by more careful hash table access 3 | -------------------------------------------------------------------------------- /TSRM/config.w32: -------------------------------------------------------------------------------- 1 | // vim:ft=javascript 2 | // $Id$ 3 | 4 | ADD_SOURCES("TSRM", "TSRM.c tsrm_strtok_r.c tsrm_virtual_cwd.c tsrm_win32.c"); 5 | 6 | -------------------------------------------------------------------------------- /ext/gettext/tests/locale/en/LC_CTYPE/dngettextTest.po: -------------------------------------------------------------------------------- 1 | msgid "item" 2 | msgid_plural "items" 3 | msgstr[0] "cProdukt" 4 | msgstr[1] "cProdukte" 5 | -------------------------------------------------------------------------------- /ext/gettext/tests/locale/en/LC_MESSAGES/dgettextTest.po: -------------------------------------------------------------------------------- 1 | msgid "item" 2 | msgid_plural "items" 3 | msgstr[0] "Produkt" 4 | msgstr[1] "Produkte" 5 | -------------------------------------------------------------------------------- /ext/gettext/tests/locale/en/LC_MESSAGES/dngettextTest.po: -------------------------------------------------------------------------------- 1 | msgid "item" 2 | msgid_plural "items" 3 | msgstr[0] "Produkt" 4 | msgstr[1] "Produkte" 5 | -------------------------------------------------------------------------------- /ext/intl/tests/_files/resourcebundle/root.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/intl/tests/_files/resourcebundle/root.res -------------------------------------------------------------------------------- /ext/mbstring/libmbfl/buildconf: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | libtoolize -c -f --automake 3 | aclocal 4 | autoheader 5 | automake -a -c --foreign 6 | autoconf 7 | -------------------------------------------------------------------------------- /ext/mcrypt/TODO: -------------------------------------------------------------------------------- 1 | /* $Id$ */ 2 | 3 | ToDo: 4 | - Convert to zend_parse_parameters 5 | - Unify error handling 6 | - Implement encryption streams 7 | -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/compress_unsup10.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/compress_unsup10.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/compress_unsup14.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/compress_unsup14.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/compress_unsup18.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/compress_unsup18.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/compress_unsup19.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/compress_unsup19.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/compress_unsup97.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/compress_unsup97.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/compress_unsup98.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/compress_unsup98.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/extralen_toolong.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/extralen_toolong.zip -------------------------------------------------------------------------------- /ext/standard/tests/file/stream_rfc2397_003.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/file/stream_rfc2397_003.gif -------------------------------------------------------------------------------- /ext/standard/tests/file/windows_acls/tiny.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/file/windows_acls/tiny.exe -------------------------------------------------------------------------------- /ext/standard/tests/general_functions/002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/general_functions/002.phpt -------------------------------------------------------------------------------- /ext/standard/tests/general_functions/006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/general_functions/006.phpt -------------------------------------------------------------------------------- /ext/standard/tests/misc/get_browser_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/misc/get_browser_basic.phpt -------------------------------------------------------------------------------- /ext/standard/tests/misc/get_browser_error.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/misc/get_browser_error.phpt -------------------------------------------------------------------------------- /ext/standard/tests/serialize/autoload_interface.p5c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/standard/tests/strings/htmlentities04.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/htmlentities04.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/htmlentities08.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/htmlentities08.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/htmlentities13.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/htmlentities13.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/htmlentities14.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/htmlentities14.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/htmlentities15.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/htmlentities15.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/htmlentities23.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/htmlentities23.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/htmlentities24.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/htmlentities24.phpt -------------------------------------------------------------------------------- /sapi/milter/TODO: -------------------------------------------------------------------------------- 1 | threaded version still leaks mem, don't know why 2 | extensions aren't loaded 3 | stdout to syslog 4 | testing 5 | documentation -------------------------------------------------------------------------------- /scripts/dev/generate-phpt/src/codeSnippets/skipifwin.txt: -------------------------------------------------------------------------------- 1 | if (substr(PHP_OS, 0, 3) == 'WIN') die("skip this test is not for Windows platforms"); 2 | -------------------------------------------------------------------------------- /snapshot: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | if test -n "$1"; then 4 | flags="DISTNAME=$1" 5 | fi 6 | 7 | ${MAKE:-make} $flags -f build/build.mk snapshot 8 | -------------------------------------------------------------------------------- /Zend/tests/multibyte/multibyte_encoding_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/Zend/tests/multibyte/multibyte_encoding_001.phpt -------------------------------------------------------------------------------- /Zend/tests/multibyte/multibyte_encoding_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/Zend/tests/multibyte/multibyte_encoding_003.phpt -------------------------------------------------------------------------------- /Zend/tests/multibyte/multibyte_encoding_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/Zend/tests/multibyte/multibyte_encoding_004.phpt -------------------------------------------------------------------------------- /Zend/tests/multibyte/multibyte_encoding_005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/Zend/tests/multibyte/multibyte_encoding_005.phpt -------------------------------------------------------------------------------- /Zend/tests/multibyte/multibyte_encoding_006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/Zend/tests/multibyte/multibyte_encoding_006.phpt -------------------------------------------------------------------------------- /ext/mbstring/libmbfl/tests/strcut.tests/ujis.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/libmbfl/tests/strcut.tests/ujis.exp -------------------------------------------------------------------------------- /ext/mbstring/tests/mb_output_handler_euc_jp.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/tests/mb_output_handler_euc_jp.phpt -------------------------------------------------------------------------------- /ext/phar/tests/tar/files/frontcontroller.phar.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/tar/files/frontcontroller.phar.tar -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/frontcontroller.phar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/frontcontroller.phar.zip -------------------------------------------------------------------------------- /ext/standard/tests/image/200x100_unknown.unknown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/image/200x100_unknown.unknown -------------------------------------------------------------------------------- /ext/standard/tests/image/2x2mm.tif: -------------------------------------------------------------------------------- 1 | MM*n -------------------------------------------------------------------------------- /ext/standard/tests/strings/strspn_variation5.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/strspn_variation5.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/strspn_variation9.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/strspn_variation9.phpt -------------------------------------------------------------------------------- /sapi/apache_hooks/CREDITS: -------------------------------------------------------------------------------- 1 | Apache 1.3 (apache_hooks) 2 | Rasmus Lerdorf, Zeev Suraski, Stig Bakken, David Sklar, George Schlossnagle, Lukas Schroeder 3 | -------------------------------------------------------------------------------- /scripts/dev/generate-phpt/src/codeSnippets/skipifnotwin.txt: -------------------------------------------------------------------------------- 1 | if (substr(PHP_OS, 0, 3) != 'WIN') die("skip this test is for Windows platforms only"); 2 | -------------------------------------------------------------------------------- /README.WIN32-BUILD-SYSTEM: -------------------------------------------------------------------------------- 1 | The Win32 Build System. 2 | 3 | See http://wiki.php.net/internals/windows/stepbystepbuild 4 | 5 | vim:tw=78:sw=1:ts=1:et 6 | 7 | -------------------------------------------------------------------------------- /ext/gettext/tests/locale/en/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/gettext/tests/locale/en/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /ext/gettext/tests/locale/fi/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/gettext/tests/locale/fi/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /ext/intl/tests/_files/resourcebundle/res_index.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/intl/tests/_files/resourcebundle/res_index.res -------------------------------------------------------------------------------- /ext/mbstring/tests/mb_output_handler_shift_jis.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/tests/mb_output_handler_shift_jis.phpt -------------------------------------------------------------------------------- /ext/phar/tests/tar/files/Structures_Graph-1.0.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/tar/files/Structures_Graph-1.0.3.tgz -------------------------------------------------------------------------------- /ext/phar/tests/tar/files/frontcontroller10.phar.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/tar/files/frontcontroller10.phar.tar -------------------------------------------------------------------------------- /ext/phar/tests/tar/files/frontcontroller11.phar.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/tar/files/frontcontroller11.phar.tar -------------------------------------------------------------------------------- /ext/phar/tests/tar/files/frontcontroller12.phar.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/tar/files/frontcontroller12.phar.tar -------------------------------------------------------------------------------- /ext/phar/tests/tar/files/frontcontroller2.phar.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/tar/files/frontcontroller2.phar.tar -------------------------------------------------------------------------------- /ext/phar/tests/tar/files/frontcontroller3.phar.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/tar/files/frontcontroller3.phar.tar -------------------------------------------------------------------------------- /ext/phar/tests/tar/files/frontcontroller4.phar.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/tar/files/frontcontroller4.phar.tar -------------------------------------------------------------------------------- /ext/phar/tests/tar/files/frontcontroller5.phar.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/tar/files/frontcontroller5.phar.tar -------------------------------------------------------------------------------- /ext/phar/tests/tar/files/frontcontroller6.phar.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/tar/files/frontcontroller6.phar.tar -------------------------------------------------------------------------------- /ext/phar/tests/tar/files/frontcontroller7.phar.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/tar/files/frontcontroller7.phar.tar -------------------------------------------------------------------------------- /ext/phar/tests/tar/files/frontcontroller8.phar.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/tar/files/frontcontroller8.phar.tar -------------------------------------------------------------------------------- /ext/phar/tests/tar/files/frontcontroller9.phar.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/tar/files/frontcontroller9.phar.tar -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/compress_unsupunknown.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/compress_unsupunknown.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/frontcontroller10.phar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/frontcontroller10.phar.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/frontcontroller11.phar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/frontcontroller11.phar.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/frontcontroller12.phar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/frontcontroller12.phar.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/frontcontroller2.phar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/frontcontroller2.phar.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/frontcontroller3.phar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/frontcontroller3.phar.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/frontcontroller4.phar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/frontcontroller4.phar.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/frontcontroller5.phar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/frontcontroller5.phar.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/frontcontroller6.phar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/frontcontroller6.phar.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/frontcontroller7.phar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/frontcontroller7.phar.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/frontcontroller8.phar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/frontcontroller8.phar.zip -------------------------------------------------------------------------------- /ext/phar/tests/zip/files/frontcontroller9.phar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/zip/files/frontcontroller9.phar.zip -------------------------------------------------------------------------------- /ext/standard/tests/misc/get_browser_variation1.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/misc/get_browser_variation1.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/sprintf_variation21.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/sprintf_variation21.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/sprintf_variation22.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/sprintf_variation22.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/sprintf_variation27.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/sprintf_variation27.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/sprintf_variation53.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/sprintf_variation53.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/strcspn_variation5.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/strcspn_variation5.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/strcspn_variation9.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/strcspn_variation9.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/vfprintf_variation9.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/vfprintf_variation9.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/vprintf_variation10.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/vprintf_variation10.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/vprintf_variation9.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/vprintf_variation9.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/vsprintf_variation9.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/vsprintf_variation9.phpt -------------------------------------------------------------------------------- /tests/classes/autoload_root.p5c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/lang/comments2.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | #-style comments (part 2) 3 | --FILEEOF-- 4 | 7 | #embedded) 4 | die("skip test doesn't run with embedded server"); 5 | ?> -------------------------------------------------------------------------------- /ext/pdo_firebird/tests/skipif.inc: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/frontcontroller.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/frontcontroller.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/frontcontroller10.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/frontcontroller10.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/frontcontroller11.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/frontcontroller11.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/frontcontroller12.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/frontcontroller12.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/frontcontroller13.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/frontcontroller13.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/frontcontroller14.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/frontcontroller14.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/frontcontroller16.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/frontcontroller16.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/frontcontroller17.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/frontcontroller17.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/frontcontroller18.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/frontcontroller18.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/frontcontroller19.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/frontcontroller19.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/frontcontroller2.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/frontcontroller2.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/frontcontroller3.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/frontcontroller3.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/frontcontroller4.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/frontcontroller4.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/frontcontroller5.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/frontcontroller5.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/frontcontroller6.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/frontcontroller6.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/frontcontroller7.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/frontcontroller7.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/frontcontroller8.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/frontcontroller8.phar -------------------------------------------------------------------------------- /ext/phar/tests/cache_list/files/frontcontroller9.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/phar/tests/cache_list/files/frontcontroller9.phar -------------------------------------------------------------------------------- /ext/standard/tests/file/bug40501.csv: -------------------------------------------------------------------------------- 1 | "this element contains the delimiter, and ends with an odd number of 2 | backslashes (ex: 1)\",and it isn't the last element$ -------------------------------------------------------------------------------- /ext/standard/tests/strings/vfprintf_variation10.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/vfprintf_variation10.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/vsprintf_variation10.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/vsprintf_variation10.phpt -------------------------------------------------------------------------------- /ext/zip/TODO: -------------------------------------------------------------------------------- 1 | - add pattern support to extract or add files 2 | - stream to add or modify entries 3 | - crypt support for zip (read and write) 4 | - Iterators 5 | -------------------------------------------------------------------------------- /tests/basic/007.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Multiply 3 variables and print result 3 | --FILE-- 4 | 5 | --EXPECT-- 6 | 64 7 | -------------------------------------------------------------------------------- /tests/basic/008.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Divide 3 variables and print result 3 | --FILE-- 4 | 5 | --EXPECT-- 6 | 3 7 | -------------------------------------------------------------------------------- /tests/basic/009.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Subtract 3 variables and print result 3 | --FILE-- 4 | 5 | --EXPECT-- 6 | 10 7 | -------------------------------------------------------------------------------- /tests/lang/026.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Testing string scanner confirmance 3 | --FILE-- 4 | 5 | --EXPECT-- 6 | " \'\n\'a\\b\ 7 | -------------------------------------------------------------------------------- /Zend/tests/ns_024.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | 024: __NAMESPACE__ constant out of namespace 3 | --FILE-- 4 | 7 | -------------------------------------------------------------------------------- /ext/mysqli/tests/mysqli_real_escape_string_eucjpms.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mysqli/tests/mysqli_real_escape_string_eucjpms.phpt -------------------------------------------------------------------------------- /ext/mysqli/tests/skipifnotemb.inc: -------------------------------------------------------------------------------- 1 | embedded) 4 | die("skip test for with embedded server only"); 5 | ?> -------------------------------------------------------------------------------- /ext/simplexml/examples/security.php: -------------------------------------------------------------------------------- 1 | id; 4 | $s->id = 20; 5 | $s->asXML('security.new.xml'); 6 | ?> 7 | -------------------------------------------------------------------------------- /ext/standard/tests/general_functions/get_included_files_inc2.inc: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /ext/standard/tests/general_functions/get_included_files_inc3.inc: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /tests/basic/006.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Add 3 variables together and print result 3 | --FILE-- 4 | 5 | --EXPECT-- 6 | 6 7 | -------------------------------------------------------------------------------- /tests/output/ob_002.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | output buffering - ob_start 3 | --FILE-- 4 | 8 | --EXPECT-- 9 | foo 10 | -------------------------------------------------------------------------------- /travis/ext/curl/setup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | export PHP_CURL_HTTP_REMOTE_SERVER="http://localhost" 3 | cd ./ext/curl/tests/responder 4 | sudo php -S localhost:80 & 5 | cd - -------------------------------------------------------------------------------- /ext/bz2/php_bz2.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | BZ2_bzCompressInit 3 | BZ2_bzCompress 4 | BZ2_bzCompressEnd 5 | BZ2_bzDecompressInit 6 | BZ2_bzDecompress 7 | BZ2_bzDecompressEnd 8 | -------------------------------------------------------------------------------- /ext/gettext/tests/locale/en/LC_CTYPE/dgettextTest_switch.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/gettext/tests/locale/en/LC_CTYPE/dgettextTest_switch.mo -------------------------------------------------------------------------------- /ext/gettext/tests/locale/en/LC_MESSAGES/dgettextTest_switch.po: -------------------------------------------------------------------------------- 1 | msgid "item" 2 | msgid_plural "items" 3 | msgstr[0] "Produkt_switched" 4 | msgstr[1] "Produkte_switched" 5 | -------------------------------------------------------------------------------- /ext/hash/tests/skip_mhash.inc: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /ext/imap/CREDITS: -------------------------------------------------------------------------------- 1 | IMAP 2 | Rex Logan, Mark Musone, Brian Wang, Kaj-Michael Lang, Antoni Pamies Olive, Rasmus Lerdorf, Andrew Skalski, Chuck Hagenbuch, Daniel R Kalowsky 3 | -------------------------------------------------------------------------------- /ext/mysql/tests/skipifnotmysqlnd.inc: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /ext/odbc/tests/config.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/dev/generate-phpt/src/texts/methodNotSpecified.txt: -------------------------------------------------------------------------------- 1 | 2 | You have given a class name but not supplied a method name to test. 3 | The method name is required. 4 | 5 | -------------------------------------------------------------------------------- /scripts/dev/generate-phpt/src/texts/unknownClass.txt: -------------------------------------------------------------------------------- 1 | 2 | The class name is not a valid PHP class name. 3 | Check that the extension containing the class is loaded. 4 | 5 | -------------------------------------------------------------------------------- /Zend/tests/bug61095.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Bug #61095 (Lexing 0x00*+ incorectly) 3 | --FILE-- 4 | 8 | --EXPECT-- 9 | 2 10 | -------------------------------------------------------------------------------- /Zend/tests/bug61225.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Bug #61225 (Lexing 0b0*+ incorectly) 3 | --FILE-- 4 | 8 | --EXPECT-- 9 | 1 10 | -------------------------------------------------------------------------------- /ext/dba/tests/clean.inc: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /ext/mbstring/libmbfl/tests/conv_encoding.tests/ujis_sjis.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/libmbfl/tests/conv_encoding.tests/ujis_sjis.exp -------------------------------------------------------------------------------- /ext/soap/tests/interop/Round4/GroupI/r4_groupI_xsd_006w.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/soap/tests/interop/Round4/GroupI/r4_groupI_xsd_006w.phpt -------------------------------------------------------------------------------- /scripts/dev/generate-phpt/src/setup/exceptions/gtMissingOptionsException.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/dev/generate-phpt/src/texts/unknownMethod.txt: -------------------------------------------------------------------------------- 1 | 2 | The method name is not a valid PHP method name. 3 | Check that the extension containing the method is loaded. 4 | 5 | -------------------------------------------------------------------------------- /tests/lang/bug27443.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Bug #27443 (defined() returns wrong type) 3 | --FILE-- 4 | 7 | --EXPECT-- 8 | boolean 9 | -------------------------------------------------------------------------------- /win32/pws-php5cgi.reg: -------------------------------------------------------------------------------- 1 | REGEDIT4 2 | 3 | [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\w3svc\parameters\Script Map] 4 | ".php"="[PUT PATH HERE]\\php.exe" 5 | 6 | 7 | -------------------------------------------------------------------------------- /win32/pws-php5isapi.reg: -------------------------------------------------------------------------------- 1 | REGEDIT4 2 | 3 | [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\w3svc\parameters\Script Map] 4 | ".php"="[PUT PATH HERE]\\php5isapi.dll" 5 | 6 | -------------------------------------------------------------------------------- /Zend/tests/ns_061.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | 061: use in global scope 3 | --FILE-- 4 | 2 | 3 | PHP made simple 4 | 5 | 6 | learn PHP easily 7 | 8 | 9 | -------------------------------------------------------------------------------- /ext/reflection/tests/included4.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/dev/generate-phpt/src/setup/exceptions/gtUnknownOptionException.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /tests/basic/002.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Simple POST Method test 3 | --POST-- 4 | a=Hello+World 5 | --FILE-- 6 | 8 | --EXPECT-- 9 | Hello World 10 | -------------------------------------------------------------------------------- /ext/dba/php_gdbm.h: -------------------------------------------------------------------------------- 1 | #ifndef PHP_GDBM_H 2 | #define PHP_GDBM_H 3 | 4 | #if DBA_GDBM 5 | 6 | #include "php_dba.h" 7 | 8 | DBA_FUNCS(gdbm); 9 | 10 | #endif 11 | 12 | #endif 13 | -------------------------------------------------------------------------------- /ext/dba/php_ndbm.h: -------------------------------------------------------------------------------- 1 | #ifndef PHP_NDBM_H 2 | #define PHP_NDBM_H 3 | 4 | #if DBA_NDBM 5 | 6 | #include "php_dba.h" 7 | 8 | DBA_FUNCS(ndbm); 9 | 10 | #endif 11 | 12 | #endif 13 | -------------------------------------------------------------------------------- /ext/dba/php_qdbm.h: -------------------------------------------------------------------------------- 1 | #ifndef PHP_QDBM_H 2 | #define PHP_QDBM_H 3 | 4 | #if DBA_QDBM 5 | 6 | #include "php_dba.h" 7 | 8 | DBA_FUNCS(qdbm); 9 | 10 | #endif 11 | 12 | #endif 13 | -------------------------------------------------------------------------------- /ext/oci8/tests/drop_type.inc: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /ext/standard/tests/strings/get_html_translation_table_basic4.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/get_html_translation_table_basic4.phpt -------------------------------------------------------------------------------- /ext/standard/tests/strings/get_html_translation_table_basic6.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/strings/get_html_translation_table_basic6.phpt -------------------------------------------------------------------------------- /scripts/dev/generate-phpt/src/setup/exceptions/gtMissingArgumentException.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /scripts/dev/generate-phpt/src/texts/unknownFunction.txt: -------------------------------------------------------------------------------- 1 | 2 | The function name is not a valid PHP function name. 3 | Check that the extension containing the function is loaded. 4 | 5 | -------------------------------------------------------------------------------- /tests/lang/027.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Testing do-while loop 3 | --FILE-- 4 | 0); 10 | ?> 11 | --EXPECT-- 12 | 321 13 | -------------------------------------------------------------------------------- /tests/lang/bison1.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Bison weirdness 3 | --FILE-- 4 | 8 | --EXPECT-- 9 | blah- 10 | -------------------------------------------------------------------------------- /tests/lang/bug44654.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Bug #44654 (syntax error for #) 3 | --FILE-- 4 | # 5 | # 6 | # 7 | --EXPECT-- 8 | #1##1 9 | -------------------------------------------------------------------------------- /tests/lang/include_variation1.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | include() a file from the current script directory 3 | --FILE-- 4 | 7 | --EXPECT-- 8 | Included! 9 | -------------------------------------------------------------------------------- /Zend/tests/ns_065.inc: -------------------------------------------------------------------------------- 1 | 2 | 4 | %incent; 5 | ]> 6 | 7 | 8 | -------------------------------------------------------------------------------- /ext/mbstring/libmbfl/tests/conv_encoding.tests/cp51932_cp50220raw.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/mbstring/libmbfl/tests/conv_encoding.tests/cp51932_cp50220raw.exp -------------------------------------------------------------------------------- /ext/standard/tests/file/bug38086.txt: -------------------------------------------------------------------------------- 1 | Another day 2 | When the pains of life won't bar my way 3 | I'll break these chains 4 | That hold me down 5 | I'll tear you down into my private hell 6 | -------------------------------------------------------------------------------- /ext/standard/tests/general_functions/gettype_settype_variation5.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/general_functions/gettype_settype_variation5.phpt -------------------------------------------------------------------------------- /ext/standard/tests/general_functions/gettype_settype_variation6.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/general_functions/gettype_settype_variation6.phpt -------------------------------------------------------------------------------- /ext/standard/tests/general_functions/gettype_settype_variation7.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/general_functions/gettype_settype_variation7.phpt -------------------------------------------------------------------------------- /ext/standard/tests/general_functions/gettype_settype_variation8.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cviebrock/php-src/master/ext/standard/tests/general_functions/gettype_settype_variation8.phpt -------------------------------------------------------------------------------- /footer: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Local variables: 4 | * tab-width: 4 5 | * c-basic-offset: 4 6 | * End: 7 | * vim600: noet sw=4 ts=4 fdm=marker 8 | * vim<600: noet sw=4 ts=4 9 | */ 10 | -------------------------------------------------------------------------------- /scripts/dev/generate-phpt/src/codeSnippets/int.txt: -------------------------------------------------------------------------------- 1 | $variation_array = array ( 2 | 'int 0' => 0, 3 | 'int 1' => 1, 4 | 'int 12345' => 12345, 5 | 'int -12345' => -2345, 6 | ); -------------------------------------------------------------------------------- /tests/lang/002.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Simple While Loop Test 3 | --FILE-- 4 | 11 | --EXPECT-- 12 | 123456789 13 | -------------------------------------------------------------------------------- /tests/lang/013.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Testing eval function 3 | --FILE-- 4 | 9 | --EXPECT-- 10 | Hello 11 | -------------------------------------------------------------------------------- /tests/lang/016.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Testing user-defined function in included file 3 | --FILE-- 4 | 8 | --EXPECT-- 9 | Hello 10 | -------------------------------------------------------------------------------- /Zend/tests/bug41401.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Bug #41401 (wrong precedence for unary minus) 3 | --FILE-- 4 | 7 | --EXPECTF-- 8 | %stests%sconstants 9 | -------------------------------------------------------------------------------- /Zend/tests/ns_014.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | 014: Name conflict and functions (php name) 3 | --FILE-- 4 | 11 | -------------------------------------------------------------------------------- /tests/lang/bug30726.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Bug #30726 (-.1 like numbers are not being handled correctly) 3 | --FILE-- 4 | 7 | --EXPECT-- 8 | 1 9 | -------------------------------------------------------------------------------- /Zend/tests/bug43027.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Bug #43027 (Declare cause fatal error) 3 | --FILE-- 4 | 9 | --EXPECTF-- 10 | ok 11 | -------------------------------------------------------------------------------- /ext/dba/php_inifile.h: -------------------------------------------------------------------------------- 1 | #ifndef PHP_INIFILE_H 2 | #define PHP_INIFILE_H 3 | 4 | #if DBA_INIFILE 5 | 6 | #include "php_dba.h" 7 | 8 | DBA_FUNCS(inifile); 9 | 10 | #endif 11 | 12 | #endif 13 | -------------------------------------------------------------------------------- /ext/mysqli/tests/skipifunicode.inc: -------------------------------------------------------------------------------- 1 | ') == 1) { 3 | die('skip Not functional with PHP 6 (fomerly PHP 6 && unicode.semantics=On)'); 4 | } 5 | ?> 6 | -------------------------------------------------------------------------------- /ext/soap/interop/config.php.dist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/standard/tests/general_functions/bug52138.data: -------------------------------------------------------------------------------- 1 | [MYCONST] 2 | MYCONST = MYCONST 3 | 4 | [M_PI] 5 | FOO=M_PI " test" 6 | 7 | [foo::bar] 8 | A=1 9 | B=A "A" A 10 | 11 | [MYCONST M_PI] 12 | -------------------------------------------------------------------------------- /ext/xmlrpc/EXPERIMENTAL: -------------------------------------------------------------------------------- 1 | this extension is experimental, 2 | its functions may change their names 3 | or move to extension all together 4 | so do not rely to much on them 5 | you have been warned! 6 | -------------------------------------------------------------------------------- /sapi/embed/EXPERIMENTAL: -------------------------------------------------------------------------------- 1 | this module is experimental, 2 | its functions may change their names 3 | or move to extension all together 4 | so do not rely to much on them 5 | you have been warned! 6 | -------------------------------------------------------------------------------- /sapi/milter/EXPERIMENTAL: -------------------------------------------------------------------------------- 1 | this module is experimental, 2 | its functions may change their names 3 | or move to extension all together 4 | so do not rely to much on them 5 | you have been warned! 6 | -------------------------------------------------------------------------------- /tests/classes/autoload_implements.p5c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/lang/009.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Testing function parameter passing 3 | --FILE-- 4 | 10 | --EXPECT-- 11 | 3 12 | -------------------------------------------------------------------------------- /tests/output/ob_004.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | output buffering - ob_clean 3 | --FILE-- 4 | 10 | --EXPECT-- 11 | bar 12 | -------------------------------------------------------------------------------- /tests/run-test/test002.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | EXPECTF 3 | --FILE-- 4 | 123 5 | -123 6 | +123 7 | +1.1 8 | abc 9 | 0abc 10 | x 11 | --EXPECTF-- 12 | %d 13 | %i 14 | %i 15 | %f 16 | %s 17 | %x 18 | %c -------------------------------------------------------------------------------- /tests/run-test/test009.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | print_r(Object) 3 | --FILE-- 4 | 9 | --EXPECTF-- 10 | Foo Object 11 | ( 12 | ) 13 | --------------------------------------------------------------------------------