Home
last modified time | relevance | path

Searched refs:contents (Results 1 – 25 of 209) sorted by last modified time

123456789

/PHP-5.5/win32/build/
H A Dconfutils.js979 contents = header.ReadAll();
981 …if (contents.match(new RegExp('PHP_' + basename.toUpperCase() + '_VERSION(\\s+)"((\\d+\.\\d+(\.\\d…
H A Dphpize.js.in62 function get_module_dep(contents) argument
65 var calls = contents.match(re_dep_line);
94 var contents = file_get_contents(c);
96 deps = get_module_dep(contents);
98 item = new Module_Item(n, c, dir_line, deps, contents);
114 var contents = file_get_contents(c);
116 deps = get_module_dep(contents);
118 item = new Module_Item(n, c, dir_line, deps, contents);
241 // Now generate contents of module based on MODULES, chasing dependencies
H A Dprojectgen.js290 address = contents.slice(0, contents.indexOf("#"));
291 contents = contents.slice(contents.indexOf("#")+1);
292 shared = contents.slice(0, contents.indexOf("#"));
293 contents = contents.slice(contents.indexOf("#"));
313 contents = contents.replace(/LOCALCPP/, cflags + " /c");
314 contents = contents.replace(/LOCALLIBS/, libs);
315 contents = contents.replace(/LOCALLDFLAGS/, ldflags);
336 contents = contents.replace(/cli\.exe/g, "php.exe");
353 contents = contents.replace(oldext, newext);
372 contents = read_src_files(ext, contents, false);
[all …]
H A Dbuildconf.js83 var contents = file_get_contents(c);
87 var calls = contents.match(re_dep_line);
99 item = new Module_Item(n, c, dir_line, deps, contents);
/PHP-5.5/win32/
H A Dinstall.txt320 contents.
/PHP-5.5/tests/output/
H A Dob_get_contents_error_001.phpt8 * Description: Return the contents of the output buffer
H A Dob_flush_basic_001.phpt6 …* Description: Flush (send) contents of the output buffer. The last buffer content is sent to next…
H A Dob_flush_error_001.phpt6 …* Description: Flush (send) contents of the output buffer. The last buffer content is sent to next…
H A Dob_get_contents_basic_001.phpt8 * Description: Return the contents of the output buffer
36 echo "\ncheck that contents disappear after a flush\n";
43 echo "\ncheck that no contents found after an end\n";
66 check that contents disappear after a flush
70 check that no contents found after an end
/PHP-5.5/tests/security/
H A Dopen_basedir.inc38 // Scan through the directory contents
/PHP-5.5/tests/lang/
H A Dbug21600.phpt2 Bug #21600 (assign by reference function call changes variable contents)
/PHP-5.5/sapi/isapi/stresstest/
H A Dnotes.txt31 filename. File contents would look like:
/PHP-5.5/main/
H A Dmain.c1381 …ic int php_get_configuration_directive_for_zend(const char *name, uint name_length, zval *contents) in php_get_configuration_directive_for_zend() argument
1386 *contents = *retval; in php_get_configuration_directive_for_zend()
/PHP-5.5/ext/zlib/tests/
H A Dzlib_scheme_copy_variation2.phpt12 uncompressed contents of 004.txt.gz is:
H A Dzlib_scheme_file_basic.phpt13 $contents = file($srcFile);
14 var_dump($contents);
H A Dzlib_scheme_file_get_contents_basic.phpt13 $contents = file_get_contents($srcFile);
14 echo $contents;
H A Dgzencode_variation2-win32.phpt2 Test gzencode() function : variation - verify header contents with all encoding modes
H A Dgzencode_variation2.phpt2 Test gzencode() function : variation - verify header contents with all encoding modes
/PHP-5.5/ext/zip/tests/
H A Dbug53579.phpt21 $contents = stream_get_contents($fp);
25 var_dump($contents);
32 $contents = stream_get_contents($fp);
33 var_dump($contents);
H A Dbug7214.phpt14 $contents = zip_entry_read($entry, zip_entry_filesize($entry));
15 if (strlen($contents) == zip_entry_filesize($entry)) {
H A Doo_stream.phpt21 $contents = '';
23 $contents .= fread($fp, 255);
28 var_dump($contents);
35 $contents = '';
37 $contents .= fread($fp, 2);
39 var_dump($contents);
H A Dpecl12414.phpt19 $contents=$za->getFromName($filename);
21 echo "ZIP contents size: " . strlen($contents) . "\n";
22 if(strlen($contents)!=$file_size) {
26 $contents=false;
/PHP-5.5/ext/zip/examples/
H A Dfopen.php12 $contents .= fread($fp, 2);
13 echo "$contents\n";
28 $contents .= fread($fp, 2);
32 file_put_contents('t',$contents);
/PHP-5.5/ext/tidy/tests/
H A D024.phpt13 $contents = '
25 $tidy = tidy_parse_string($contents, $config, 'utf8');
/PHP-5.5/ext/tidy/
H A Dtidy.c1276 char *contents; in PHP_FUNCTION() local
1289 if (!(contents = php_tidy_file_to_mem(inputfile, use_include_path, &contents_len TSRMLS_CC))) { in PHP_FUNCTION()
1296 if(php_tidy_parse_string(obj, contents, contents_len, enc TSRMLS_CC) == FAILURE) { in PHP_FUNCTION()
1302 efree(contents); in PHP_FUNCTION()
1589 char *contents; in TIDY_DOC_METHOD() local
1610 php_tidy_parse_string(obj, contents, contents_len, enc TSRMLS_CC); in TIDY_DOC_METHOD()
1612 efree(contents); in TIDY_DOC_METHOD()
1621 char *contents; in TIDY_DOC_METHOD() local
1634 if (!(contents = php_tidy_file_to_mem(inputfile, use_include_path, &contents_len TSRMLS_CC))) { in TIDY_DOC_METHOD()
1641 if(php_tidy_parse_string(obj, contents, contents_len, enc TSRMLS_CC) == FAILURE) { in TIDY_DOC_METHOD()
[all …]

Completed in 56 milliseconds

123456789