Skip to content

Instantly share code, notes, and snippets.

@joepie91
Last active November 29, 2021 11:16
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save joepie91/dc67316d2a22f321d1a1 to your computer and use it in GitHub Desktop.
Save joepie91/dc67316d2a22f321d1a1 to your computer and use it in GitHub Desktop.
PHP vs Node.js: Synchronous vs Asynchronous
console.log("Before the first file is read.");
hypotheticalFileGetContents("sample.txt", function(fileContents){
// fileContents now contains the file contents, this function is only called when the file read in the background has finished
console.log("After the first file has completed reading.");
});
// You've now told it to start the first read, but it won't 'block' your script execution. It will do the read in the background, and immediately move on with the rest of your code.
console.log("Before the second file is read.");
hypotheticalFileGetContents("sample2.txt", function(fileContents){
// fileContents now contains the file contents, this function is only called when the file read in the background has finished
console.log("After the second file has completed reading.");
});
/* Output could look something like this:
Before the first file is read.
Before the second file is read.
After the first file has completed reading.
After the second file has completed reading.
*/
<?php
echo("Before the first file is read.");
$fileContents = file_get_contents("sample.txt"); // You can't do anything while the file is being read, your script is 'stuck'.
echo("After the first file has completed reading.");
echo("Before the second file is read.");
$fileContents = file_get_contents("sample2.txt"); // You can't do anything while the file is being read, your script is 'stuck'.
echo("After the second file has completed reading.");
/* Output always looks like this:
Before the first file is read.
After the first file has completed reading.
Before the second file is read.
After the second file has completed reading.
*/
@josephcode773
Copy link

Thank you for this. It really helped with my understanding.

@Praveenunimity
Copy link

Thank You. It really helps to sort out the difference between Synchronous vs Asynchronous.

@DanielAdek
Copy link

👍 Thanks Bro, you've turned on the light on Synchronous vs Asynchronous.

@VictorVermeulen
Copy link

Thanks Joep, this was a good refresher! Hi from Netherlands :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment