¡@

Home 

php Programming Glossary: php_function

How does similar_text work?

http://stackoverflow.com/questions/14136349/how-does-similar-text-work

percent Calculates the similarity between two strings PHP_FUNCTION similar_text char t1 t2 zval percent NULL int ac ZEND_NUM_ARGS..

Compare PHP Arrays Using Memory References

http://stackoverflow.com/questions/4110973/compare-php-arrays-using-memory-references

PHP_TEST_EXT_VERSION 1.0 #define PHP_TEST_EXT_EXTNAME test PHP_FUNCTION getaddress4 PHP_FUNCTION getaddress extern zend_module_entry.. #define PHP_TEST_EXT_EXTNAME test PHP_FUNCTION getaddress4 PHP_FUNCTION getaddress extern zend_module_entry test_module_entry #define.. #ifdef COMPILE_DL_TEST ZEND_GET_MODULE test #endif PHP_FUNCTION getaddress4 zval var1 zval var2 zval var3 zval var4 char r 500..

How to start writing a PHP5 extension in C++

http://stackoverflow.com/questions/492014/how-to-start-writing-a-php5-extension-in-c

1.0 #define PHP_HELLO_WORLD_EXTNAME hello PHP_FUNCTION hello_world extern zend_module_entry hello_module_entry #define.. #ifdef COMPILE_DL_HELLO ZEND_GET_MODULE hello #endif PHP_FUNCTION hello_world RETURN_STRING Hello World 1 ....and here are my..

Why date() works twice as fast if we set time zone from code?

http://stackoverflow.com/questions/5556789/why-date-works-twice-as-fast-if-we-set-time-zone-from-code

is called to get one. Here's that function PHP_FUNCTION date_default_timezone_get timelib_tzinfo default_tz default_tz.. with date_default_timezone_set Let's look at that function PHP_FUNCTION date_default_timezone_set char zone int zone_len if zend_parse_parameters..

PHP's count(), O(1) or O(n) for arrays?

http://stackoverflow.com/questions/5835241/phps-count-o1-or-on-for-arrays

Well we can look at the source ext standard array.c PHP_FUNCTION count calls php_count_recursive which in turn calls zend_hash_num_elements..