Home
last modified time | relevance | path

Searched refs:h (Results 51 – 75 of 747) sorted by relevance

12345678910>>...30

/PHP-5.5/ext/reflection/tests/
H A Dbug52057.phpt18 var_dump($h = $reflection->getMethod('__invoke')); // true
19 var_dump($h->class.'::'.$h->getName());
22 var_dump($h = $reflection->getMethod('__invoke')); // true
23 var_dump($h->class.'::'.$h->getName());
26 var_dump($h = $reflection->getMethod('__invoke')); // true
27 var_dump($h->class.'::'.$h->getName());
/PHP-5.5/ext/zlib/tests/
H A Dgzclose_basic.phpt15 $h = gzopen($f, 'r');
16 gzread($h, 20);
17 var_dump(gzclose($h));
20 gzread($h, 20);
22 $h = gzopen($f, 'r');
23 gzread($h, 20);
24 var_dump(fclose($h));
27 gzread($h, 20);
H A Dgzseek_variation6.phpt12 $h = gzopen($f, 'r');
15 gzread($h, 40);
17 var_dump(gztell($h));
19 var_dump(gzseek( $h, 0, SEEK_END ) );
21 var_dump(gztell($h));
23 var_dump(gzeof($h));
25 var_dump(gzread($h, 10));
26 gzclose($h);
H A Dgzopen_variation4.phpt46 gzclose($h);
51 gzpassthru($h);
52 gzclose($h);
58 gzclose($h);
62 gzpassthru($h);
63 gzclose($h);
69 gzclose($h);
74 gzclose($h);
83 gzclose($h);
89 gzclose($h);
[all …]
H A Dgzeof_variation1.phpt13 $h = gzopen($filename, 'w');
16 gzwrite( $h, $str );
17 var_dump(gzeof($h));
18 gzwrite( $h, $str, $length);
19 var_dump(gzeof($h));
20 gzclose($h);
21 var_dump(gzeof($h));
H A Dgzputs_basic.phpt13 $h = gzopen($filename, 'w');
16 var_dump(gzputs( $h, $str ) );
17 var_dump(gzputs( $h, $str, $length ) );
18 gzclose($h);
20 $h = gzopen($filename, 'r');
21 gzpassthru($h);
22 gzclose($h);
H A Dgzread_error2.phpt12 $h = gzopen($f, 'r');
13 var_dump(gzread($h, 10));
14 var_dump(gzread($h, 0));
15 var_dump(gzread($h, 5));
16 var_dump(gzread($h, -1));
17 var_dump(gzread($h, 8));
18 gzclose($h);
H A Dgzfile_variation15.phpt32 $h = gzopen($secondFile, "w");
33 gzwrite($h, "This is a file in dir2");
34 gzclose($h);
41 $h = gzopen($firstFile, "w");
42 gzwrite($h, "This is a file in dir1");
43 gzclose($h);
50 $h = gzopen($filename, "w");
52 gzclose($h);
66 $h = gzopen($scriptFile, "w");
67 gzwrite($h, "This is a file in script dir");
[all …]
H A Dgzopen_variation5.phpt38 $h = gzopen($tmpfile, "w", true);
39 fwrite($h, "This is the test file");
40 fclose($h);
43 $h = @gzopen($tmpfile, "r");
44 if ($h === false) {
49 gzclose($h);
53 $h = @gzopen('dir1/'.$tmpfile, "r");
54 if ($h === false) {
59 gzclose($h);
H A Dreadgzfile_variation15.phpt32 $h = gzopen($secondFile, "w");
33 gzwrite($h, "This is a file in dir2");
34 gzclose($h);
42 $h = gzopen($firstFile, "w");
43 gzwrite($h, "This is a file in dir1");
44 gzclose($h);
52 $h = gzopen($filename, "w");
54 gzclose($h);
70 $h = gzopen($scriptFile, "w");
71 gzwrite($h, "This is a file in script dir");
[all …]
/PHP-5.5/ext/mbstring/
H A Dmbstring.dsp150 SOURCE=.\mb_gpc.h
165 SOURCE=.\mbstring.h
180 SOURCE=.\php_mbregex.h
184 SOURCE=.\php_unicode.h
199 SOURCE=.\unicode_data.h
505 SOURCE=.\libmbfl\config.h.vc6
514 copy $(InputDir)\config.h.vc6 "$(InputDir)\config.h"
525 copy $(InputDir)\config.h.vc6 "$(InputDir)\config.h"
1071 copy $(InputDir)\config.h "$(InputDir)\..\config.h"
1082 copy $(InputDir)\config.h "$(InputDir)\..\config.h"
[all …]
H A Dconfig.m448 out="php_config.h"
51 if test -f "$ext_builddir/config.h.in"; then
52 out="$abs_builddir/config.h"
54 out="php_config.h"
63 PHP_MBSTRING_ADD_INSTALL_HEADERS([mbstring.h])
79 #include <stdarg.h>
102 AC_CHECK_HEADERS([stdlib.h string.h strings.h unistd.h sys/time.h sys/times.h stdarg.h])
110 AC_CHECK_HEADER([stdarg.h], [
185 #include <oniguruma.h>
203 PHP_MBSTRING_ADD_INSTALL_HEADERS([php_mbregex.h php_onig_compat.h])
[all …]
/PHP-5.5/ext/standard/tests/file/
H A Dfopen_variation19.phpt30 fwrite($h, "Hello World");
31 fclose($h);
71 $h = fopen($file, 'r');
72 fpassthru($h);
73 fclose($h);
79 fwrite($h, ' again!');
80 fseek($h, 0);
81 fpassthru($h);
82 fclose($h);
87 $h = fopen($file, 'w');
[all …]
H A Dfopen_variation12.phpt20 $h = fopen($tmpfile, "w", true);
21 fwrite($h, (binary) "This is the test file");
22 fclose($h);
25 $h = @fopen($tmpfile, "r");
26 if ($h === false) {
31 fclose($h);
37 $h = @fopen($scriptDirFile, "r");
38 if ($h === false) {
43 fclose($h);
H A Dfopen_variation7.phpt34 $h = fopen($tmpfile, "w", true);
35 fwrite($h, (binary)"This is the test file");
36 fclose($h);
39 $h = @fopen($tmpfile, "r");
40 if ($h === false) {
45 fclose($h);
49 $h = @fopen($dir1.'/'.$tmpfile, "r");
50 if ($h === false) {
55 fclose($h);
H A Dfopen_variation9.phpt34 $h = fopen($tmpfile, "w", true);
35 fwrite($h, (binary) "This is the test file");
36 fclose($h);
39 $h = @fopen($tmpfile, "r");
40 if ($h === false) {
45 fclose($h);
49 $h = @fopen('dir1/'.$tmpfile, "r");
50 if ($h === false) {
55 fclose($h);
/PHP-5.5/Zend/
H A Dzend_hash.c262 p->h = h; in _zend_hash_add_or_update()
340 p->h = h; in _zend_hash_quick_add_or_update()
418 p->h = h; in _zend_hash_index_update_or_next_insert()
503 if ((p->h == h) in zend_hash_del_key_or_index()
771 hash_key.h = p->h; in zend_hash_apply_with_arguments()
877 hash_key.h = p->h; in zend_hash_replace_checker_wrapper()
1065 ptr->h = ht->pInternalPointer->h; in zend_hash_get_pointer()
1266 p->h == h && in zend_hash_update_current_key_ex()
1422 p->h = h; in zend_hash_update_current_key_ex()
1537 if (p1->h != p2->h) { in zend_hash_compare()
[all …]
/PHP-5.5/ext/date/
H A Dconfig0.m417 PHP_INSTALL_HEADERS([ext/date], [php_date.h lib/timelib.h lib/timelib_structs.h lib/timelib_config.
19 cat > $ext_builddir/lib/timelib_config.h <<EOF
21 # include "config.w32.h"
23 # include <php_config.h>
H A Dconfig.w3210 var tl_config = FSO.CreateTextFile("ext/date/lib/timelib_config.h", true);
11 tl_config.WriteLine("#include \"config.w32.h\"");
14 PHP_INSTALL_HEADERS("ext/date/", "php_date.h lib/timelib.h lib/timelib_structs.h lib/timelib_config…
/PHP-5.5/
H A DMakefile.global68 (cd $(top_srcdir)/$$src && $(INSTALL_DATA) *.h $(INSTALL_ROOT)$(phpincludedir)/$$i; \
69 …cd $(top_builddir)/$$src && $(INSTALL_DATA) *.h $(INSTALL_ROOT)$(phpincludedir)/$$i) 2>/dev/null |…
121h main/internal_functions_cli.c main/internal_functions.c stamp-h sapi/apache/libphp$(PHP_MAJOR_VE…
122 rm -f php5.spec main/build-defs.h scripts/phpize
123 …ext/date/lib/timelib_config.h ext/mbstring/oniguruma/config.h ext/mbstring/libmbfl/config.h ext/my…
126h ext/iconv/php_have_glibc_iconv.h ext/iconv/php_have_ibm_iconv.h ext/iconv/php_have_iconv.h ext/i…
H A DMakefile.frag6 $(builddir)/zend_language_scanner.lo: $(srcdir)/zend_language_parser.h
7 $(builddir)/zend_ini_scanner.lo: $(srcdir)/zend_ini_parser.h
10 …--no-generation-date --case-inverted -cbdFt Zend/zend_language_scanner_defs.h -oZend/zend_language…
12 $(srcdir)/zend_language_parser.h: $(srcdir)/zend_language_parser.c
16 $(srcdir)/zend_ini_parser.h: $(srcdir)/zend_ini_parser.c
21 …AGS) --no-generation-date --case-inverted -cbdFt Zend/zend_ini_scanner_defs.h -oZend/zend_ini_scan…
23 …dent.lo $(builddir)/zend_highlight.lo $(builddir)/zend_compile.lo: $(srcdir)/zend_language_parser.h
/PHP-5.5/ext/pdo_odbc/
H A Dconfig.m4123 PDO_ODBC_CHECK_HEADER(odbc.h)
124 PDO_ODBC_CHECK_HEADER(odbcsdk.h)
125 PDO_ODBC_CHECK_HEADER(iodbc.h)
126 PDO_ODBC_CHECK_HEADER(sqlunix.h)
129 PDO_ODBC_CHECK_HEADER(sql.h)
130 PDO_ODBC_CHECK_HEADER(isql.h)
131 PDO_ODBC_CHECK_HEADER(sqlext.h)
132 PDO_ODBC_CHECK_HEADER(isqlext.h)
133 PDO_ODBC_CHECK_HEADER(udbcext.h)
134 PDO_ODBC_CHECK_HEADER(sqlcli1.h)
[all …]
/PHP-5.5/ext/spl/tests/
H A Dspl_heap_isempty.phpt8 $h = new SplMaxHeap();
10 var_dump($h->isEmpty())."\n";
11 $h->insert(2);
13 var_dump($h->isEmpty())."\n";
14 $h->extract();
16 var_dump($h->isEmpty())."\n";
/PHP-5.5/ext/dba/
H A Dconfig.m4147 THIS_INCLUDE=$i/include/gdbm.h
207 THIS_INCLUDE=$i/include/tcadb.h
315 if test -f "$i/db5/db.h"; then
317 THIS_INCLUDE=$i/db5/db.h
321 THIS_INCLUDE=$i/db4/db.h
361 THIS_INCLUDE=$i/include/db.h
376 if test -f "$i/db3/db.h"; then
394 THIS_INCLUDE=$i/include/db.h
411 THIS_INCLUDE=$i/db2/db.h
453 for i in db$THIS_VERSION/db_185.h include/db$THIS_VERSION/db_185.h include/db/db_185.h; do
[all …]
/PHP-5.5/ext/xmlrpc/libxmlrpc/
H A Dacinclude.m415 AC_CHECK_HEADERS(xmlparse.h xmltok.h stdlib.h strings.h string.h)

Completed in 68 milliseconds

12345678910>>...30