我想预览 pdf,但更新到 php 8 和一些软件包更新后打不开。
这段代码来自 laravel
function konversi($x)
{
$x = abs($x);
$angka = array("", "Satu", "Dua", "Tiga", "Empat", "Lima", "Enam", "Tujuh", "Delapan", "Sembilan", "Sepuluh", "Sebelas");
$temp = "";
> if ($x < 12) {// Notif from laravel in this line
$temp = " " . $angka[$x];
} else if ($x < 20) {
$temp = konversi($x - 10) . " Belas";
} else if ($x < 100) {
$temp = konversi($x / 10) . " Puluh" . konversi($x …Run Code Online (Sandbox Code Playgroud)