/PHP-7.2/ext/ |
H A D | ext_skel | 35 --extname=?*) 36 extname=$optarg 93 mkdir $extname || givup "Cannot create directory $extname" 101 cd $extname 117 dnl PHP_ARG_WITH($extname, for $extname support, 123 PHP_ARG_ENABLE($extname, whether to enable $extname support, 125 [ --enable-$extname Enable $extname support]) 197 // ARG_WITH("$extname", "for $extname support", "no"); 200 ARG_ENABLE("$extname", "enable $extname support", "no"); 340 6. $ ./sapi/cli/php -f ext/$extname/$extname.php [all …]
|
H A D | ext_skel_win32.php | 27 $extname = ""; variable 31 $extname = substr($arg, 10); variable 38 $fp = fopen("$extname/$extname.php", "rb"); 40 $php_file = fread($fp, filesize("$extname/$extname.php")); 44 $fp = fopen("$extname/$extname.php", "wb");
|
/PHP-7.2/ext/skeleton/ |
H A D | skeleton.c | 72 PHP_MINIT_FUNCTION(extname) in PHP_MINIT_FUNCTION() argument 83 PHP_MSHUTDOWN_FUNCTION(extname) in PHP_MSHUTDOWN_FUNCTION() argument 95 PHP_RINIT_FUNCTION(extname) in PHP_RINIT_FUNCTION() argument 107 PHP_RSHUTDOWN_FUNCTION(extname) in PHP_RSHUTDOWN_FUNCTION() argument 115 PHP_MINFO_FUNCTION(extname) in PHP_MINFO_FUNCTION() argument 144 PHP_MINIT(extname), 145 PHP_MSHUTDOWN(extname), 146 PHP_RINIT(extname), /* Replace with NULL if there's nothing to do at request start */ 147 PHP_RSHUTDOWN(extname), /* Replace with NULL if there's nothing to do at request end */ 148 PHP_MINFO(extname), [all …]
|
H A D | create_stubs | 65 xmldoc = extname "/" extname ".xml" 71 " <reference id=\"ref." extname "\">\n" \ 256 if (!stubs) print "" > ( extname "/function_warning" ) 267 print "PHP_FUNCTION(" funcs[i] ");" > ( extname "/function_declarations" ) 268 print "\tPHP_FE(" funcs[i] ",\tNULL)" > ( extname "/function_entries" )
|
H A D | CREDITS | 1 extname
|
H A D | php_skeleton.h | 37 #define EXTNAME_G(v) ZEND_MODULE_GLOBALS_ACCESSOR(extname, v)
|
/PHP-7.2/ext/skeleton/tests/ |
H A D | 001.phpt | 2 Check for extname presence 4 <?php if (!extension_loaded("extname")) print "skip"; ?> 7 echo "extname extension is available"; 21 extname extension is available
|
/PHP-7.2/win32/build/ |
H A D | confutils.js | 1310 function ADD_EXTENSION_DEP(extname, dependson, optional) argument 1312 var EXT = extname.toUpperCase(); 1347 ERROR("static " + extname + " cannot depend on shared " + dependson); 1365 var dllname = ' php_' + extname + '.dll'; 1375 ERROR("Cannot build " + extname + "; " + dependson + " not enabled"); 1387 var EXT = extname.toUpperCase(); 1421 MFO.WriteLine("# objects for EXT " + extname); 1424 ADD_SOURCES(configure_module_dirname, file_list, extname, obj_dir); 1430 dllname = "php_" + extname + ".dll"; 1471 MFO.WriteLine("\t@echo EXT " + extname + " build complete"); [all …]
|
/PHP-7.2/ |
H A D | INSTALL | 1061 extname 1179 $ pecl install extname 1182 extname.so into your extension_dir. extname.so may then be loaded via 1189 $ pecl install extname-beta 1193 $ pecl install extname-0.1 1213 a directory named extname: 1215 $ cd extname 1288 $ pecl download extname 1290 $ mv extname-x.x.x extname 1294 /your/phpsrcdir/ext/extname [all …]
|
H A D | README.UNIX-BUILD-SYSTEM | 58 PHP_NEW_EXTENSION(extname, sources [, shared [,sapi_class[, extra-cflags]]])
|
H A D | README.EXT_SKEL | 18 ./ext_skel --extname=module_name
|
H A D | acinclude.m4 | 933 dnl PHP_NEW_EXTENSION(extname, sources [, shared [, sapi_class [, extra-cflags [, cxx [, zend_ext]]… 937 dnl "extname" is the name of the extension. 1010 dnl PHP_ADD_EXTENSION_DEP(extname, depends [, depconf])
|
/PHP-7.2/win32/ |
H A D | install.txt | 1077 * pecl download extname 1112 $ pecl install extname 1115 extname.so into your extension_dir. extname.so may then be loaded via 1122 $ pecl install extname-beta 1126 $ pecl install extname-0.1 1140 a directory named extname: 1142 $ cd extname 1169 $ pecl download extname 1171 $ mv extname-x.x.x extname 1175 /your/phpsrcdir/ext/extname [all …]
|
/PHP-7.2/ext/standard/ |
H A D | basic_functions.c | 5423 char *extname = NULL; local 5430 Z_PARAM_STRING_EX(extname, extname_len, 1, 0) 5436 if (extname) { 5437 if ((module = zend_hash_str_find_ptr(&module_registry, extname, extname_len)) == NULL) { 5438 php_error_docref(NULL, E_WARNING, "Unable to find extension '%s'", extname);
|
/PHP-7.2/ext/openssl/ |
H A D | openssl.c | 2308 char *extname; in PHP_FUNCTION() local 2420 extname = (char *)OBJ_nid2sn(OBJ_obj2nid(X509_EXTENSION_get_object(extension))); in PHP_FUNCTION() 2423 extname = buf; in PHP_FUNCTION() 2433 add_assoc_stringl(&subitem, extname, bio_buf->data, bio_buf->length); in PHP_FUNCTION() 2445 add_assoc_stringl(&subitem, extname, bio_buf->data, bio_buf->length); in PHP_FUNCTION() 2447 php_openssl_add_assoc_asn1_string(&subitem, extname, X509_EXTENSION_get_data(extension)); in PHP_FUNCTION()
|