Voting

: three minus two?
(Example: nine)

The Note You're Voting On

Alejandro-Ihuit
2 years ago
If you want to directly take a specific value without having to store it in another variable, you can implement the following:

$status = 'Missing-1';

echo $status_only = explode('-', $status)[0];

// Missing

<< Back to user notes page

To Top