(PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8)
posix_strerror — Belirtilen hata kodu ile ilgili sistem hata iletisini döndürür
Belirtilen hata_kodu
ile ilgili sistem hata iletisini
döndürür. hata_kodu
,
posix_get_last_error() işlevinden dönmüş bir değer
olabilir.
hata_kodu
posix_get_last_error() işlevinden dönmüş bir POSIX hata numarası. 0 belirtilirse "Success" dizgesi döner.
Hata iletisini bir dizge olarak döndürür.
Örnek 1 - posix_strerror() örneği
Bu örnekte çalışmayan bir süreç öldürülmeye çalışılacak ve dönen hata iletisi gösterilecektir.
<?php
posix_kill(50,SIGKILL);
echo posix_strerror(posix_get_last_error())."\n";
?>
Yukarıdaki örnek şuna benzer bir çıktı üretir:
No such process