Home
last modified time | relevance | path

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

12345678

/PHP-8.3/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.3/ext/filter/tests/
H A D052.phpt12 $data = array ('bar' => array ('fu<script>bar', 'bar<script>fu') );
25 string(21) "fu&#60;script&#62;bar"
27 string(21) "bar&#60;script&#62;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.3/ext/opcache/
H A Dzend_file_cache.c123 (((char*)(ptr) >= (char*)script->mem && (char*)(ptr) <= (char*)script->mem + script->size) || \
936 info->script_offset = (char*)script - (char*)script->mem;
939 memcpy(buf, script->mem, script->size);
1311 if (op_array != &script->script.main_op_array) {
1758 UNSERIALIZE_STR(script->script.filename);
1760 zend_file_cache_unserialize_hash(&script->script.class_table,
1762 zend_file_cache_unserialize_hash(&script->script.function_table,
1764 zend_file_cache_unserialize_op_array(&script->script.main_op_array, script, buf);
1889 return script;
1943 zend_accel_hash_update(&ZCSG(hash), script->script.filename, 0, script);
[all …]
H A Dzend_accelerator_util_funcs.c58 persistent_script->script.function_table.nNumUsed = 0; in free_persistent_script()
59 persistent_script->script.class_table.nNumUsed = 0; in free_persistent_script()
61 destroy_op_array(&persistent_script->script.main_op_array); in free_persistent_script()
65 zend_hash_destroy(&persistent_script->script.class_table); in free_persistent_script()
67 if (persistent_script->script.filename) { in free_persistent_script()
98 dst = &script->function_table; in zend_accel_move_user_functions()
99 filename = script->main_op_array.filename; in zend_accel_move_user_functions()
129 dst = &script->class_table; in zend_accel_move_user_classes()
130 filename = script->main_op_array.filename; in zend_accel_move_user_classes()
381 *op_array = persistent_script->script.main_op_array; in zend_accel_load_script()
[all …]
H A DZendAccelerator.c3626 zend_string_hash_val(script->script.filename);
3627 script->script.main_op_array = *op_array;
3632 zend_hash_add_ptr(preload_scripts, script->script.filename, script);
4113 zend_op *opline = script->script.main_op_array.opcodes;
4276 zend_script *script = &ZCSG(preload_script)->script; local
4472 script->script.main_op_array.last = 1;
4473 script->script.main_op_array.last_literal = 1;
4478 script->script.main_op_array.literals = (zval*)(script->script.main_op_array.opcodes + 1);
4480 ZVAL_NULL(script->script.main_op_array.literals);
4485 …ZEND_PASS_TWO_UPDATE_CONSTANT(&script->script.main_op_array, script->script.main_op_array.opcodes,…
[all …]
H A Dzend_persist.h27 uint32_t zend_accel_script_persist_calc(zend_persistent_script *script, int for_shm);
28 zend_persistent_script *zend_accel_script_persist(zend_persistent_script *script, int for_shm);
H A Dzend_persist.c1344 zend_accel_store_interned_string(script->script.filename); in zend_accel_script_persist()
1361 zend_accel_persist_class_table(&script->script.class_table); in zend_accel_script_persist()
1362 zend_hash_persist(&script->script.function_table); in zend_accel_script_persist()
1363 ZEND_HASH_MAP_FOREACH_BUCKET(&script->script.function_table, p) { in zend_accel_script_persist()
1368 zend_persist_op_array_ex(&script->script.main_op_array, script); in zend_accel_script_persist()
1371 if (script->script.main_op_array.static_variables) { in zend_accel_script_persist()
1376 zend_jit_op_array(&script->script.main_op_array, &script->script); in zend_accel_script_persist()
1380 script->warnings = zend_persist_warnings(script->num_warnings, script->warnings); in zend_accel_script_persist()
1382 script->num_early_bindings, script->early_bindings); in zend_accel_script_persist()
1391 zend_jit_script(&script->script); in zend_accel_script_persist()
[all …]
H A Dzend_accelerator_util_funcs.h33 void zend_accel_move_user_functions(HashTable *str, uint32_t count, zend_script *script);
34 void zend_accel_move_user_classes(HashTable *str, uint32_t count, zend_script *script);
/PHP-8.3/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.3/ext/pcre/pcre2lib/
H A Dpcre2_script_run.c128 uint32_t script = ucd->script; in PRIV() local
133 if (script == ucp_Unknown) return FALSE; in PRIV()
139 if (UCD_SCRIPTX_PROP(ucd) != 0 || (script != ucp_Inherited && script != ucp_Common)) in PRIV()
151 if (script != ucp_Common && script != ucp_Inherited) MAPSET(map, script); in PRIV()
161 switch(script) in PRIV()
205 if (script != ucp_Han) /* Another Han does nothing */ in PRIV()
262 switch(script) in PRIV()
/PHP-8.3/ext/random/tests/01_functions/
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.3/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.3/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.3/ext/standard/tests/general_functions/
H A Dbug69646.phpt24 $script = __DIR__ . DIRECTORY_SEPARATOR . "arginfo.php";
25 file_put_contents($script, $helper_script);
27 $cmd = getenv('TEST_PHP_EXECUTABLE_ESCAPED') . " " . escapeshellarg($script) . " " . escapeshellar…
31 unlink($script);
/PHP-8.3/sapi/cli/tests/
H A Dbug64529.phpt22 $script = __DIR__ . "/expect.sh";
61 file_put_contents($script, $expect_script);
63 system($expect_executable . " " . $script . " " . $php_executable);
65 @unlink($script);
/PHP-8.3/Zend/Optimizer/
H A Dzend_call_graph.h63 ZEND_API void zend_build_call_graph(zend_arena **arena, zend_script *script, zend_call_graph *call_…
64 ZEND_API void zend_analyze_call_graph(zend_arena **arena, zend_script *script, zend_call_graph *cal…
66 ZEND_API void zend_analyze_calls(zend_arena **arena, zend_script *script, uint32_t build_flags, zen…
/PHP-8.3/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.3/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_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
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
/PHP-8.3/
H A Dbuildconf.bat7 IF NOT EXIST %PHP_BUILDCONF_PATH% (echo Error generating configure script, configure script was not…
/PHP-8.3/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.3/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 46 milliseconds

12345678