Giriş GitHub Giriş Google
1.2k soru
1.3k cevap
432 yorum
1.1k üye
component.php
<?php for($i = 0 ; $i < 100 ; $i++) { echo "<p>$i</p>"; }
index.php
<?php ob_start(); require 'component.php'; $output = ob_get_clean(); echo json_encode(['message' => $output]); header('Content-Type: text/json');