I have this string from a database:
<href="/supplier/plant-whole-payment-details/80912">22441769</a>
I only need 80912. How can I get it in PHP?
|
|
|
|||||||
|
|
You don't want to split the string, but extract a part of it. Regular expressions come in handy for that. If the string is always similar to the one in your example, use this one to get the first match of digits between
Further explanation:
|
||||
|
|
|
you can get this by using
|
|||
|
|
|
you can do this with
this will output the number .at the end of the string . |
|||||||||||
|
|
Use this... In this example we will break a string to an array:
|
|||
|
|