“file_get_contents w JavaScript” Kod odpowiedzi

file_get_contents w JavaScript

// You can use Fetch to get data.
fetch('http://example.com') // url here
  .then((response) => {
    return response.json(); // replace .json() to .text() for plain text
  })
  .then((daat) => {
    console.log(daat);
  });
Undefined

file_get_contents w JavaScript

//Or You can use php.js library. Which allow some php functions for javascript. 
//file_get_contents() function one of them.

<script>
	var data = file_get_contents('Your URL');
</script>

//You can find more info about php.js : http://phpjs.org/
Noob Learner

Odpowiedzi podobne do “file_get_contents w JavaScript”

Pytania podobne do “file_get_contents w JavaScript”

Więcej pokrewnych odpowiedzi na “file_get_contents w JavaScript” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu