Esto es lo que hago:
Código PHP:
<?php
$url = "https://rafelcf.000webhostapp.com/rafel_cf/1.php";
echo '[' ;
$data = file_get_contents($url);
$pendientes = json_decode($data, true);
foreach ($pendientes as $indice => $valor) {
foreach($valor as $indice1 => $valor1){
if($valor1 == "Pendiente"){
echo json_encode($valor);
}
}
}
echo ']';
?>