Created
April 1, 2021 14:09
-
-
Save tamimibrahim17/ead7229be8ade4e1e1f25e6093755d4a to your computer and use it in GitHub Desktop.
check status file to control progress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$lock_file = $_GET['lock_file']; | |
$data = file_get_contents($lock_file); | |
$data = unserialize($data); | |
echo json_encode($data); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment