I’ve got the following string:
Query_time: 77.571216 Lock_time: 2.793139 Rows_sent: 20 Rows_examined: 4654071
How would i go about placing each number into a variable?
eg:
$query_time = 77.571216;
$lock_time = 2.793139;
$rows_sent = 20;
$rows_examined = 4654071;
1 Answer