note 102801 deleted from function.substr by danbrown

[email protected]
Newsgroups php.notes
Message-ID <[email protected]>
Note Submitter: Anonymous 

----

@Cristianlf:
It's pretty useless if you know how this function works:
<?php
function right($string,$chars) 
{ 
    return substr($string, -$chars);
}

echo right('asd', 2);  // sd
echo substr('asd', -2);  // sd
?>
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.