Home
last modified time | relevance | path

Searched refs:script (Results 1 – 25 of 176) sorted by relevance

12345678

/PHP-8.0/ext/intl/tests/
H A Dlocale_get_script.phpt87 root: script=''
89 Hindi: script=''
90 de: script=''
91 fr: script=''
92 ja: script=''
100 sl-rozaj: script=''
105 de-DE: script=''
106 en-US: script=''
107 es-419: script=''
110 zh-min: script=''
[all …]
H A Dlocale_parse_locale2.phpt125 language : 'zh' , script : 'Hant' ,
128 language : 'zh' , script : 'Hans' ,
131 language : 'sr' , script : 'Cyrl' ,
134 language : 'sr' , script : 'Latn' ,
137 language : 'zh' , script : 'Hans' , region : 'CN' ,
140 language : 'sr' , script : 'Latn' , region : 'CS' ,
155 language : 'sl' , script : 'Latn' , region : 'IT' , variant0 : 'NEDIS' ,
170 language : 'az' , script : 'Arab' , private0 : 'AZE' , private1 : 'derbend' ,
179 language : 'qaa' , script : 'Qaaa' , region : 'QM' , private0 : 'southern' ,
182 language : 'sr' , script : 'Latn' , region : 'QM' ,
[all …]
/PHP-8.0/ext/opcache/
H A Dzend_file_cache.c120 (((char*)(ptr) >= (char*)script->mem && (char*)(ptr) < (char*)script->mem + script->size) || \
891 info->script_offset = (char*)script - (char*)script->mem;
894 memcpy(buf, script->mem, script->size);
1054 write(fd, buf, script->size) != script->size ||
1634 UNSERIALIZE_STR(script->script.filename);
1636 zend_file_cache_unserialize_hash(&script->script.class_table,
1638 zend_file_cache_unserialize_hash(&script->script.function_table,
1640 zend_file_cache_unserialize_op_array(&script->script.main_op_array, script, buf);
1765 return script;
1826 …_accel_hash_update(&ZCSG(hash), ZSTR_VAL(script->script.filename), ZSTR_LEN(script->script.filenam…
[all …]
H A DZendAccelerator.c3421 zend_string_hash_val(script->script.filename);
3422 script->script.main_op_array = *op_array;
3432 zend_hash_add_ptr(preload_scripts, script->script.filename, script);
3933 zend_hash_add(&script->script.class_table, key, zv);
4324 zend_script *script = &ZCSG(preload_script)->script; local
4681 script->script.main_op_array.last = 1;
4682 script->script.main_op_array.last_literal = 1;
4686 script->script.main_op_array.literals = (zval*)(script->script.main_op_array.opcodes + 1);
4688 ZVAL_NULL(script->script.main_op_array.literals);
4693 …ZEND_PASS_TWO_UPDATE_CONSTANT(&script->script.main_op_array, script->script.main_op_array.opcodes,…
[all …]
H A Dzend_persist.h25 uint32_t zend_accel_script_persist_calc(zend_persistent_script *script, const char *key, unsigned i…
26 zend_persistent_script *zend_accel_script_persist(zend_persistent_script *script, const char **key,…
H A Dzend_accelerator_util_funcs.h31 void zend_accel_move_user_functions(HashTable *str, uint32_t count, zend_script *script);
32 void zend_accel_move_user_classes(HashTable *str, uint32_t count, zend_script *script);
H A Dzend_accelerator_util_funcs.c67 persistent_script->script.function_table.nNumUsed = 0; in free_persistent_script()
68 persistent_script->script.class_table.nNumUsed = 0; in free_persistent_script()
70 destroy_op_array(&persistent_script->script.main_op_array); in free_persistent_script()
74 zend_hash_destroy(&persistent_script->script.class_table); in free_persistent_script()
76 if (persistent_script->script.filename) { in free_persistent_script()
95 dst = &script->function_table; in zend_accel_move_user_functions()
96 filename = script->main_op_array.filename; in zend_accel_move_user_functions()
126 dst = &script->class_table; in zend_accel_move_user_classes()
127 filename = script->main_op_array.filename; in zend_accel_move_user_classes()
755 *op_array = persistent_script->script.main_op_array; in zend_accel_load_script()
[all …]
H A Dzend_persist.c1160 script->warnings, script->num_warnings * sizeof(zend_recorded_warning *)); in zend_persist_warnings()
1178 script = zend_shared_memdup_free(script, sizeof(zend_persistent_script)); in zend_accel_script_persist()
1183 script->corrupted = 0; in zend_accel_script_persist()
1191 zend_accel_store_interned_string(script->script.filename); in zend_accel_script_persist()
1211 zend_accel_persist_class_table(&script->script.class_table); in zend_accel_script_persist()
1212 zend_hash_persist(&script->script.function_table); in zend_accel_script_persist()
1213 ZEND_HASH_FOREACH_BUCKET(&script->script.function_table, p) { in zend_accel_script_persist()
1218 zend_persist_op_array_ex(&script->script.main_op_array, script); in zend_accel_script_persist()
1228 zend_jit_script(&script->script); in zend_accel_script_persist()
1234 script->corrupted = 0; in zend_accel_script_persist()
[all …]
H A Dzend_persist_calc.c545 static void zend_persist_warnings_calc(zend_persistent_script *script) { in zend_persist_warnings_calc() argument
546 ADD_SIZE(script->num_warnings * sizeof(zend_recorded_warning *)); in zend_persist_warnings_calc()
547 for (uint32_t i = 0; i < script->num_warnings; i++) { in zend_persist_warnings_calc()
549 ADD_STRING(script->warnings[i]->error_filename); in zend_persist_warnings_calc()
550 ADD_STRING(script->warnings[i]->error_message); in zend_persist_warnings_calc()
575 ADD_STRING(new_persistent_script->script.filename); in zend_accel_script_persist_calc()
582 …if (new_persistent_script->script.class_table.nNumUsed != new_persistent_script->script.class_tabl… in zend_accel_script_persist_calc()
583 zend_hash_rehash(&new_persistent_script->script.class_table); in zend_accel_script_persist_calc()
586 …if (new_persistent_script->script.function_table.nNumUsed != new_persistent_script->script.functio… in zend_accel_script_persist_calc()
587 zend_hash_rehash(&new_persistent_script->script.function_table); in zend_accel_script_persist_calc()
[all …]
/PHP-8.0/ext/filter/tests/
H A D052.phpt12 $data = array ('bar' => array ('fu<script>bar', 'bar<script>fu') );
34 string(13) "fu<script>bar"
36 string(13) "bar<script>fu"
52 string(13) "fu<script>bar"
54 string(13) "bar<script>fu"
70 string(13) "fu<script>bar"
72 string(13) "bar<script>fu"
H A D042.phpt7 $var = 'XYZ< script>alert(/ext/filter+bypass/);< /script>ABC';
12 script>alert(/ext/filter+bypass/);<
13 /script>ABC';
/PHP-8.0/ext/tokenizer/tests/
H A Dtoken_get_all_variation19.phpt2 Reconstructing a script using token_get_all()
11 // A php script to test token_get_all()
35 $script = "";
36 // reconstruct a script (without open/close tags) from the token array
45 $script .= $token[1];
47 $script .= $token;
51 var_dump($script);
53 eval($script);
59 // A php script to test token_get_all()
/PHP-8.0/ext/standard/tests/math/
H A Dlcg_value_basic.phpt6 echo "MATHS test script started\n";
24 echo "MATHS test script completed\n";
28 MATHS test script started
32 MATHS test script completed
/PHP-8.0/ext/standard/tests/url/
H A Dbug54180.phpt6 var_dump(parse_url("http://example.com/path/script.html?t=1#fragment?data"));
7 var_dump(parse_url("http://example.com/path/script.html#fragment?data"));
17 string(17) "/path/script.html"
29 string(17) "/path/script.html"
/PHP-8.0/win32/build/
H A Dphpize.bat3 cscript /nologo /e:jscript %PHP_BUILDCONF_PATH%\script\phpize.js %*
5 echo Error generating configure script, configure script was not copied
/PHP-8.0/ext/standard/tests/general_functions/
H A Dbug69646.phpt24 $script = __DIR__ . DIRECTORY_SEPARATOR . "arginfo.php";
25 file_put_contents($script, $helper_script);
27 $cmd = PHP_BINARY . " " . $script . " " . escapeshellarg($a) . " " . escapeshellarg($b);
31 unlink($script);
/PHP-8.0/sapi/cli/tests/
H A Dbug64529.phpt20 $script = __DIR__ . "/expect.sh";
59 file_put_contents($script, $expect_script);
61 system($expect_executable . " " . $script . " " . $php_executable);
63 @unlink($script);
/PHP-8.0/ext/opcache/Optimizer/
H A Dzend_call_graph.h62 int zend_build_call_graph(zend_arena **arena, zend_script *script, zend_call_graph *call_graph);
63 void zend_analyze_call_graph(zend_arena **arena, zend_script *script, zend_call_graph *call_graph);
65 int zend_analyze_calls(zend_arena **arena, zend_script *script, uint32_t build_flags, zend_op_array…
/PHP-8.0/ext/standard/tests/strings/
H A Dstrip_tags_basic1.phpt17 "<script language=\"PHP\"> echo hello </script>",
18 '<script language=\"PHP\"> echo hello </script>',
/PHP-8.0/
H A Dbuildconf.bat7 IF NOT EXIST %PHP_BUILDCONF_PATH% (echo Error generating configure script, configure script was not…
/PHP-8.0/ext/standard/tests/file/
H A Dfopen_variation12.phpt32 echo "Not created in script dir\n";
35 echo "created in script dir\n";
43 Not created in script dir
H A Dfopen_variation8.phpt97 // create a file in the script directory
99 fwrite($h, "in script dir");
102 //should read the file in script dir
123 in script dir
130 in script dir
137 in script dir
H A Dfopen_variation5.phpt98 // create a file in the script directory
100 fwrite($h, "in script dir");
103 //should read the file in script dir
124 in script dir
131 in script dir
138 in script dir
/PHP-8.0/tests/run-test/
H A Dtest010.phpt11 use this to input some thing to the php script
14 use this to input some thing to the php script
/PHP-8.0/ext/standard/tests/serialize/
H A Dserialization_objects_005.phpt102 Warning: main(): The script tried to access a property on an incomplete object. Please ensure that …
104 The script tried to modify a property on an incomplete object. Please ensure that the class definit…
106 Warning: main(): The script tried to access a property on an incomplete object. Please ensure that …
109 Warning: main(): The script tried to access a property on an incomplete object. Please ensure that …
111 The script tried to modify a property on an incomplete object. Please ensure that the class definit…
114 Warning: main(): The script tried to access a property on an incomplete object. Please ensure that …
116 The script tried to modify a property on an incomplete object. Please ensure that the class definit…
118 Warning: main(): The script tried to access a property on an incomplete object. Please ensure that …
120 The script tried to modify a property on an incomplete object. Please ensure that the class definit…
122 Warning: main(): The script tried to access a property on an incomplete object. Please ensure that …
[all …]

Completed in 186 milliseconds

12345678