For versions of PHP < 5.5.0, you can get the name of the script from $argv[0]: http://www.php.net/manual/en/reserved.variables.argv.php
(PHP 5 >= 5.5.0, PHP 7, PHP 8)
cli_get_process_title — Geçerli sürecin başlığını döndürür
Geçerli sürece cli_set_process_title() tarafından atanmış başlığı döndürür. Dikkat, kullanılan işletim sistemine bağlı olarak ps veya top çıktısında gösterilenle tam olarak eşleşmeyebilir.
Bu işlev sadece CLI kipinde kullanılabilir.
Bu işlevin bağımsız değişkeni yoktur.
Geçerli sürecin başlığını içeren bir dizge veya hata durumunda null
döndürür.
İşletim sistemi desteklenmiyorsa bir E_WARNING
üretilir.
Örnek 1 - cli_get_process_title() örneği
<?php
echo "Process title: " . cli_get_process_title() . "\n";
?>
For versions of PHP < 5.5.0, you can get the name of the script from $argv[0]: http://www.php.net/manual/en/reserved.variables.argv.php