I want to read the last line of a block of text , e.g:
250-SIZE 31457280
250-AUTH LOGIN CRAM-MD5
250 OK
Here is my current code - it reads the first line only:
if (substr(trim($res), 0, 3) != "250") {
Giving an output of
250-SIZE 31457280
I want to get the last
250 OK
(there are no blank lines in between it's my copy paste problem ). Any idea?