Home
last modified time | relevance | path

Searched refs:copy (Results 301 – 316 of 316) sorted by path

1...<<111213

/php-src/sapi/cli/tests/
H A D019.phpt33 If you did not receive a copy of the PHP license, or have any
/php-src/sapi/fpm/
H A Dconfig.m494 …long v1 = (unsigned int) -1; /* copy will fail if sizeof(long) == 8 and we've got "int ptrace()" */
/php-src/sapi/fpm/tests/
H A Dfcgi.inc7 * Permission is hereby granted, free of charge, to any person obtaining a copy of
10 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
/php-src/tests/classes/
H A Darray_access_005.phpt45 $x = $people[0]; // creates a copy
H A Dclone_001.phpt14 $copy = clone $obj;
15 $copy->p3 = 'C';
19 var_dump($copy);
H A Dclone_002.phpt16 $copy = clone $obj;
17 $copy->p3 = 'C';
21 var_dump($copy);
H A Dclone_003.phpt28 $copy = clone $obj;
32 print_r($copy);
/php-src/tests/lang/
H A Dbug20175.phpt36 * The return statement transports a copy of the value to return. In other
H A DforeachLoop.009.phpt6 // "Unless the array is referenced, foreach operates on a copy of the specified array."
H A DforeachLoop.010.phpt11 // "Unless the array is referenced, foreach operates on a copy of
19 // At this point the array $a is no longer referenced, so foreach should operate on a copy of the a…
/php-src/tests/security/
H A Dopen_basedir_copy.phpt8 test_open_basedir_before("copy");
10 var_dump(copy("ok.txt", "../bad"));
11 var_dump(copy("ok.txt", "../bad/bad.txt"));
12 var_dump(copy("ok.txt", ".."));
13 var_dump(copy("ok.txt", "../"));
14 var_dump(copy("ok.txt", "/"));
15 var_dump(copy("ok.txt", "../bad/."));
17 var_dump(copy("ok.txt", "./../."));
19 var_dump(copy("ok.txt", "copy.txt"));
20 var_dump(unlink("copy.txt"));
[all …]
H A Dopen_basedir_copy_variation1.phpt8 test_open_basedir_before("copy");
10 var_dump(copy("../bad/bad.txt", "copy.txt"));
11 var_dump(unlink("copy.txt"));
13 test_open_basedir_after("copy");
21 *** Testing open_basedir configuration [copy] ***
28 Warning: copy(): open_basedir restriction in effect. File(../bad/bad.txt) is not within the allowed…
31 Warning: unlink(copy.txt): No such file or directory in %s on line %d
33 *** Finished testing open_basedir configuration [copy] ***
/php-src/win32/build/
H A DMakefile236 @copy $(BUILD_DIR)\$(PHPLIB) $(BUILD_DIR_DEV)\lib /y >nul
241 @copy run-tests.php $(BUILD_DIR_DEV)\script\ /y >nul
242 @copy build\gen_stub.php $(BUILD_DIR_DEV)\build\ /y >nul
243 @copy win32\build\confutils.js $(BUILD_DIR_DEV)\script\ /y >nul
244 @copy win32\build\configure.tail $(BUILD_DIR_DEV)\script\ /y >nul
246 @copy win32\build\Makefile.phpize $(BUILD_DIR_DEV)\script\ /y >nul
247 @copy win32\build\phpize.bat $(BUILD_DIR_DEV)\ /y >nul
248 @copy win32\build\template.rc $(BUILD_DIR_DEV)\build\ /y >nul
249 @copy win32\build\default.manifest $(BUILD_DIR_DEV)\build\ /y >nul
251 @copy $(BUILD_DIR)\devel\phpize.js $(BUILD_DIR_DEV)\script\ /y >nul
[all …]
H A Dmkdist.php227 copy("$build_dir/php.exe", "$dist_dir/php.exe");
233 copy("$build_dir/$phplib", "$dist_dir/dev/$phplib");
237 copy("$build_dir/$phppdb", "$dist_dir/dev/$phppdb");
270 copy($src, $dist_dir . '/' . $dest);
325 copy($dll, "$dist_dir/" . basename($dll));
407 copy($dll, "$pecl_dir/" . basename($dll));
428 copy($fs, $fd);
519 copy('run-tests.php', $test_dir . '/run-tests.php');
548 copy($url, $destfilename);
582 copy($item, "$dist_dir/$bi");
[all …]
H A Dphpize.js.in9 | If you did not receive a copy of the PHP license and are unable to |
11 | license@php.net so we can mail you a copy immediately. |
/php-src/win32/
H A Dglob.c680 char *copy; in globextend() local
707 if ((copy = malloc(len)) != NULL) { in globextend()
708 if (g_Ctoc(path, copy, len)) { in globextend()
709 free(copy); in globextend()
712 pathv[pglob->gl_offs + pglob->gl_pathc++] = copy; in globextend()
722 return(copy == NULL ? GLOB_NOSPACE : 0); in globextend()

Completed in 49 milliseconds

1...<<111213