| /PHP_5_3/ext/phar/tests/zip/files/ |
| H A D | zipmaker.php.inc | 28 * @param string|resource file contents or open file handle
|
| /PHP_5_3/ext/standard/tests/file/ |
| H A D | file.inc | 4 create_files() : create files with specified contents 8 fill_files() : fill file with specified contents 10 fill_buffer() : fills buffer with specified contents
|
| /PHP_5_3/ext/zip/examples/ |
| H A D | fopen.php | 12 $contents .= fread($fp, 2); 13 echo "$contents\n"; 28 $contents .= fread($fp, 2); 32 file_put_contents('t',$contents);
|
| /PHP_5_3/tests/security/ |
| H A D | open_basedir.inc | 38 // Scan through the directory contents
|
| /PHP_5_3/win32/build/ |
| H A D | buildconf.js | 83 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);
246 // Now generate contents of module based on MODULES, chasing dependencies
|
| H A D | confutils.js | 959 contents = header.ReadAll();
961 if (contents.match(new RegExp('PHP_' + basename.toUpperCase() + '_VERSION(\\s+)"((\\d+\.\\d+(\.\\d+)?)((a|b)(\\d)?|\-[a-z]{3,5})?(RC\\d+)?(\-dev)?)'))) {
|
| H A D | phpize.js.in | 58 function get_module_dep(contents)
61 var calls = contents.match(re_dep_line);
90 var contents = file_get_contents(c);
92 deps = get_module_dep(contents);
94 item = new Module_Item(n, c, dir_line, deps, contents);
110 var contents = file_get_contents(c);
112 deps = get_module_dep(contents);
114 item = new Module_Item(n, c, dir_line, deps, contents);
231 // Now generate contents of module based on MODULES, chasing dependencies
|
| H A D | projectgen.js | 289 contents = file_get_contents(f.item()); 290 address = contents.slice(0, contents.indexOf("#")); 291 contents = contents.slice(contents.indexOf("#")+1); 292 shared = contents.slice(0, contents.indexOf("#")); 293 contents = contents [all...] |
| /PHP_5_3/ext/iconv/ |
| H A D | iconv.c | 116 ZEND_ARG_INFO(0, contents) 2338 /* {{{ proto string ob_iconv_handler(string contents, int status)
|
| /PHP_5_3/ext/imap/ |
| H A D | php_imap.c | 3642 if (zend_hash_find(Z_ARRVAL_PP(data), "contents.data", sizeof("contents.data"), (void **) &pvalue)== SUCCESS) { 3644 bod->contents.text.data = (char *) fs_get(Z_STRLEN_PP(pvalue) + 1); 3645 memcpy(bod->contents.text.data, Z_STRVAL_PP(pvalue), Z_STRLEN_PP(pvalue)+1); 3646 bod->contents.text.size = Z_STRLEN_PP(pvalue); 3648 bod->contents.text.data = (char *) fs_get(1); 3649 memcpy(bod->contents.text.data, "", 1); 3650 bod->contents.text.size = 0; 3755 if (zend_hash_find(Z_ARRVAL_PP(data), "contents.data", sizeof("contents [all...] |
| H A D | php_imap.h | 63 #define CONTENT_PART contents.part 64 #define CONTENT_MSG_BODY contents.msg.body
|
| /PHP_5_3/ext/mbstring/ |
| H A D | mbstring.c | 253 ZEND_ARG_INFO(0, contents) 1917 /* {{{ proto string mb_output_handler(string contents, int status)
|
| /PHP_5_3/ext/simplexml/ |
| H A D | simplexml.c | 1009 xmlChar *contents; local 1014 contents = xmlNodeListGetString(node->doc, node->children, 1); 1015 if (contents) { 1016 ZVAL_STRING(*value, (char *)contents, 1); 1017 xmlFree(contents); 1726 static int cast_object(zval *object, int type, char *contents TSRMLS_DC) 1728 if (contents) { 1729 ZVAL_STRINGL(object, contents, strlen(contents), 1); 1761 xmlChar *contents local [all...] |
| /PHP_5_3/ext/tidy/ |
| H A D | tidy.c | 1225 char *contents; local 1241 if (!(contents = php_tidy_file_to_mem(inputfile, use_include_path, &contents_len TSRMLS_CC))) { 1248 if(php_tidy_parse_string(obj, contents, contents_len, enc TSRMLS_CC) == FAILURE) { 1254 efree(contents); 1541 char *contents; local 1558 if (!(contents = php_tidy_file_to_mem(inputfile, use_include_path, &contents_len TSRMLS_CC))) { 1565 php_tidy_parse_string(obj, contents, contents_len, enc TSRMLS_CC); 1567 efree(contents); 1576 char *contents; local 1592 if (!(contents [all...] |
| /PHP_5_3/Zend/ |
| H A D | zend.c | 66 static int (*zend_get_configuration_directive_p)(const char *name, uint name_length, zval *contents); 951 ZEND_API int zend_get_configuration_directive(const char *name, uint name_length, zval *contents) /* {{{ */ argument 954 return zend_get_configuration_directive_p(name, name_length, contents);
|
| H A D | zend.h | 481 int (*get_configuration_directive)(const char *name, uint name_length, zval *contents); 651 ZEND_API int zend_get_configuration_directive(const char *name, uint name_length, zval *contents);
|
| /PHP_5_3/ext/phar/ |
| H A D | func_interceptors.c | 98 char *contents; local 205 if ((len = php_stream_copy_to_mem(stream, &contents, maxlen, 0)) > 0) { 209 contents = php_addslashes(contents, len, &newlen, 1 TSRMLS_CC); /* 1 = free source string */ 213 RETVAL_STRINGL(contents, len, 0);
|
| H A D | phar_object.c | 197 /* send headers, output file contents */ 1703 /* try to open source file, then create internal phar file and copy contents */ 1804 * Optional second parameter is a regular expression for filtering directory contents. 2052 "Cannot convert phar archive \"%s\", unable to open entry \"%s\" contents: %s", entry->phar->fname, entry->filename, error); 2056 "Cannot convert phar archive \"%s\", unable to open entry \"%s\" contents", entry->phar->fname, entry->filename); 2061 /* copy old contents in entirety */ 2072 "Cannot convert phar archive \"%s\", unable to copy entry \"%s\" contents", entry->phar->fname, entry->filename); 2082 /* set new location of file contents */ 2344 /* first copy each file's uncompressed contents to a temporary file and set per-file flags */ 2883 * Do not flush a writeable phar (save its contents) unti [all...] |
| /PHP_5_3/ext/standard/ |
| H A D | file.c | 533 char *contents; local 571 if ((len = php_stream_copy_to_mem(stream, &contents, maxlen, 0)) > 0) { 574 contents = php_addslashes(contents, len, &len, 1 TSRMLS_CC); /* 1 = free source string */ 577 RETVAL_STRINGL(contents, len, 0); 589 Write/Create a file with contents data and return the number of bytes written */
|
| H A D | streamsfuncs.c | 418 char *contents = NULL; local 446 len = php_stream_copy_to_mem(stream, &contents, maxlen, 0); 448 if (contents) { 450 contents = php_addslashes(contents, len, &newlen, 1 TSRMLS_CC); /* 1 = free source string */ 453 RETVAL_STRINGL(contents, len, 0);
|
| /PHP_5_3/main/ |
| H A D | main.c | 1271 static int php_get_configuration_directive_for_zend(const char *name, uint name_length, zval *contents) argument 1276 *contents = *retval;
|