Home
last modified time | relevance | path

Searched refs:copy (Results 26 – 50 of 276) sorted by path

12345678910>>...12

/PHP-7.4/docs/
H A Drelease-process.md43 * Clone a new copy of the php-src repository (it will rewrite history, keep
275 * If that fails for any non-trivially fixable reason, you can manually copy
H A Dself-contained-extensions.md34 You now have an empty directory. We will copy the files from the mysqli
123 This will automatically copy the necessary build files and create configure from
H A Dstreams.md103 If you need to copy some data from one stream to another, you will be please to
111 If you want to copy all remaining data from the src stream, pass
113 number of bytes to copy. This function will try to use mmap where available to
132 this function to copy the contents into a new stream that can be `seek()ed`:
/PHP-7.4/ext/bcmath/libbcmath/
H A DLICENSE6 Everyone is permitted to copy and distribute verbatim copies
51 permission to copy, distribute and/or modify the library.
153 1. You may copy and distribute verbatim copies of the Library's
155 you conspicuously and appropriately publish on each copy an
158 warranty; and distribute a copy of this License along with the
166 of it, thus forming a work based on the Library, and copy and
225 subsequent copies and derivative works made from that copy.
230 4. You may copy and distribute the Library (or a portion or
241 compelled to copy the source along with the object code.
319 materials or that you have already sent this user a copy.
[all …]
/PHP-7.4/ext/curl/tests/
H A Dcurl_copy_handle_basic.phpt21 // copy the handle
H A Dcurl_copy_handle_basic_001.phpt14 echo '*** Testing curl copy handle with simple GET ***' . "\n";
23 $copy = curl_copy_handle($ch);
26 $curl_content = curl_exec($copy);
27 curl_close($copy);
33 *** Testing curl copy handle with simple GET ***
H A Dcurl_copy_handle_basic_002.phpt13 echo '*** Testing curl copy handle with simple POST ***' . "\n";
24 $copy = curl_copy_handle($ch);
27 $curl_content = curl_exec($copy);
28 curl_close($copy);
34 *** Testing curl copy handle with simple POST ***
H A Dcurl_copy_handle_basic_004.phpt25 $copy = curl_copy_handle($ch);
28 $curl_content_copy = curl_exec($copy);
29 curl_close($copy);
H A Dcurl_copy_handle_basic_005.phpt27 $copy = curl_copy_handle($ch);
30 $curl_content_copy = curl_exec($copy);
31 curl_close($copy);
H A Dcurl_copy_handle_basic_006.phpt14 echo '*** Testing curl copy handle with User Agent ***' . "\n";
24 $copy = curl_copy_handle($ch);
27 var_dump( curl_exec($copy) );
29 …curl_close($ch); // can not close original handle before curl_exec($copy) since it causes char * i…
30 curl_close($copy);
35 *** Testing curl copy handle with User Agent ***
H A Dcurl_copy_handle_basic_007.phpt10 echo '*** Testing curl copy handle with simple POST using array as arguments ***' . "\n";
22 $copy = curl_copy_handle($ch);
25 $curl_content = curl_exec($copy);
26 curl_close($copy);
32 *** Testing curl copy handle with simple POST using array as arguments ***
H A Dcurl_copy_handle_variation1.phpt20 // copy the handle
H A Dcurl_copy_handle_variation2.phpt15 echo "*** Testing curl_copy_handle(): add options after copy ***\n";
20 // copy the handle
39 *** Testing curl_copy_handle(): add options after copy ***
/PHP-7.4/ext/date/lib/
H A DLICENSE.rst6 Permission is hereby granted, free of charge, to any person obtaining a copy
9 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
H A Dparse_date.re7 * Permission is hereby granted, free of charge, to any person obtaining a copy
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
H A Dparse_iso_intervals.re6 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
/PHP-7.4/ext/date/tests/
H A Ddate_time_immutable.phpt104 copy: 2012-12-27 16:24:08 Europe/London
107 copy: 2012-12-29 16:24:08 Europe/London
112 copy: 2012-12-27 16:24:08 Europe/London
115 copy: 2012-12-29 16:24:10 Europe/London
120 copy: 2012-12-27 16:24:08 Europe/London
123 copy: 2012-12-25 16:24:06 Europe/London
128 copy: 2012-12-27 16:24:08 Europe/London
131 copy: 2012-12-28 01:24:08 Asia/Tokyo
134 copy: 2012-12-27 16:24:08 Europe/London
139 copy: 2012-12-27 16:24:08 Europe/London
[all …]
/PHP-7.4/ext/dba/tests/
H A Dbug65708.phpt2 Bug #65708 (dba functions cast $key param to string in-place, bypassing copy on write)
17 $copy = $key;
20 echo gettype($copy)."\n";
25 echo gettype($copy)."\n";
/PHP-7.4/ext/exif/tests/
H A Dexif000.phpt13 copy of test1.jpg as a thumbnail.
H A Dexif001.phpt13 copy of test1.jpg as a thumbnail.
H A Dexif002.phpt13 copy of test1.jpg as a thumbnail.
H A Dexif003.phpt19 copy of test1.jpg as a thumbnail.
/PHP-7.4/ext/
H A Dext_skel.php321 if (!copy($options['skel'] . $config_script . '.in', $new_config_script)) {
341 …if (!copy($options['skel'] . $src_file, $options['dir'] . $options['ext'] . DIRECTORY_SEPARATOR . …
368 if (!copy($test, $options['dir'] . $options['ext'] . DIRECTORY_SEPARATOR . $new_test)) {
/PHP-7.4/ext/ffi/
H A Dffi.g11 | If you did not receive a copy of the PHP license and are unable to |
13 | license@php.net so we can mail you a copy immediately. |
43 | If you did not receive a copy of the PHP license and are unable to |
45 | license@php.net so we can mail you a copy immediately. |
/PHP-7.4/ext/fileinfo/
H A Dlibmagic.patch3348 - char *copy;
3352 - if ((copy = malloc(len + 1)) == NULL)
3354 - (void)memcpy(copy, str, len);
3355 - copy[len] = '\0';
3356 - return copy;
3530 - char *copy;
3533 - if (copy == NULL) {
3541 - copy[--slen] = '\0';
3542 - search = copy;
3593 - copy = NULL;
[all …]

Completed in 54 milliseconds

12345678910>>...12