Home
last modified time | relevance | path

Searched refs:return_code (Results 1 – 4 of 4) sorted by relevance

/PHP-7.4/ext/standard/tests/file/windows_mb_path/
H A Dbug71509.phpt29 $return_code = $zipfile->open($outputfile_zip, ZipArchive::CREATE);
30 if ($return_code != true) die("Failed to open file: " . $return_code);
32 $return_code = $zipfile->addfile($testfile_zip, basename($testfile_zip));
33 if ($return_code != true) print("Failed to add file: " . $zipfile->getStatusString());
35 $return_code = $zipfile->close();
36 if ($return_code != true) die("Failed to close archive: " . $zipfile->getStatusString());
/PHP-7.4/ext/sqlite3/
H A Dsqlite3.c372 int return_code; in PHP_METHOD() local
384 if (return_code != SQLITE_OK) { in PHP_METHOD()
569 int return_code; in PHP_METHOD() local
598 if (return_code != SQLITE_OK) { in PHP_METHOD()
614 switch (return_code) { in PHP_METHOD()
683 int return_code; in PHP_METHOD() local
708 if (return_code != SQLITE_OK) { in PHP_METHOD()
715 switch (return_code) { in PHP_METHOD()
1526 int return_code; in php_sqlite3_bind_params() local
1824 int return_code = 0; in PHP_METHOD() local
[all …]
/PHP-7.4/ext/json/
H A Djson.c196 int return_code; in php_json_encode_ex() local
201 return_code = php_json_encode_zval(buf, val, options, &encoder); in php_json_encode_ex()
204 return return_code; in php_json_encode_ex()
H A Djson_encoder.c476 int return_code; in php_json_encode_serializable_object() local
519 return_code = php_json_encode_array(buf, &retval, options, encoder); in php_json_encode_serializable_object()
522 return_code = php_json_encode_zval(buf, &retval, options, encoder); in php_json_encode_serializable_object()
529 return return_code; in php_json_encode_serializable_object()

Completed in 16 milliseconds