Is using the following correct for defining the negative start parameter for a substr, because its the only way i know how to get it to retur the correct result.
$start == (-44);
or
$start == (int) -44;
$pair = substr($str, $start, 4);
|
Is using the following correct for defining the negative start parameter for a substr, because its the only way i know how to get it to retur the correct result.
|
|||
| show 6 more comments |
|
the It should be:
Also is the start value One more error you could run into is if the length of |
|||
|
|
|
You can just add a
Or
|
|||
|
|
substr($str, -44, 4);? What error does show up if you try this? – SvenS Sep 23 '11 at 12:58==in your code rather than$start = something, either way is syntactically correct. – jprofitt Sep 23 '11 at 13:03$all_but_first_4 = substr($str_tmp, 4);and to get the first four$first_4 = substr($str_temp, 0, 4);– jprofitt Sep 23 '11 at 14:45