I PHP
ve düzenli ifade için yeni. Ben bazı online örnekler thorugh oluyor ve bu örnek ile geldi:
<?php
echo preg_replace_callback('~-([a-z])~', function ($match) {
return strtoupper($match[1]);
}, 'hello-world');
// outputs helloWorld
?>
php.net
ama benim için sürpriz çalışmak ve hata almaya devam etmez için:
PHP Parse error: parse error, unexpected T_FUNCTION
Neden hata olsun?