Home
last modified time | relevance | path

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

/PHP-8.2/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-8.2/ext/sqlite3/
H A Dsqlite3.c358 int return_code; in PHP_METHOD() local
370 if (return_code != SQLITE_OK) { in PHP_METHOD()
549 int return_code; in PHP_METHOD() local
577 if (return_code != SQLITE_OK) { in PHP_METHOD()
595 switch (return_code) { in PHP_METHOD()
663 int return_code; in PHP_METHOD() local
688 if (return_code != SQLITE_OK) { in PHP_METHOD()
695 switch (return_code) { in PHP_METHOD()
1493 int return_code; in php_sqlite3_bind_params() local
1765 int return_code = 0; in PHP_METHOD() local
[all …]
/PHP-8.2/ext/json/
H A Djson.c124 zend_result return_code; in php_json_encode_ex() local
129 return_code = php_json_encode_zval(buf, val, options, &encoder); in php_json_encode_ex()
132 return return_code; in php_json_encode_ex()
H A Djson_encoder.c536 zend_result return_code; in php_json_encode_serializable_object() local
579 return_code = php_json_encode_array(buf, &retval, options, encoder); in php_json_encode_serializable_object()
582 return_code = php_json_encode_zval(buf, &retval, options, encoder); in php_json_encode_serializable_object()
589 return return_code; in php_json_encode_serializable_object()

Completed in 24 milliseconds