C
craig c
Guest
I have an array thats producing the following result:
Array ( [0] => Calls: 0 [1] => 0 )
How do I ONLY display the 0 after Calls: and hide the rest of the result?
Here is the coding producing the array:
preg_match_all('/Calls: (\d+)/', $queueinfo, $q_waitingcalls, PREG_SET_ORDER );
Array ( [0] => Calls: 0 [1] => 0 )
How do I ONLY display the 0 after Calls: and hide the rest of the result?
Here is the coding producing the array:
preg_match_all('/Calls: (\d+)/', $queueinfo, $q_waitingcalls, PREG_SET_ORDER );