[31-Aug-2025 09:38:56 Europe/Istanbul] PHP Parse error: syntax error, unexpected token "<" in /home/laralogi/public_html/index.php on line 6 [31-Aug-2025 09:41:31 Europe/Istanbul] PHP Parse error: syntax error, unexpected token "<" in /home/laralogi/public_html/index.php on line 6 [31-Aug-2025 10:23:31 Europe/Istanbul] PHP Parse error: syntax error, unexpected token "<" in /home/laralogi/public_html/index.php on line 6 [31-Aug-2025 10:23:31 Europe/Istanbul] PHP Parse error: syntax error, unexpected token "<" in /home/laralogi/public_html/index.php on line 6 [31-Aug-2025 10:28:31 Europe/Istanbul] PHP Parse error: syntax error, unexpected token "<" in /home/laralogi/public_html/index.php on line 6 [31-Aug-2025 10:29:29 Europe/Istanbul] PHP Parse error: syntax error, unexpected token "<" in /home/laralogi/public_html/index.php on line 6 [31-Aug-2025 10:35:30 Europe/Istanbul] PHP Parse error: syntax error, unexpected token "<" in /home/laralogi/public_html/index.php on line 6 [31-Aug-2025 10:35:32 Europe/Istanbul] PHP Parse error: syntax error, unexpected token "<" in /home/laralogi/public_html/index.php on line 6 [31-Aug-2025 10:35:35 Europe/Istanbul] PHP Parse error: syntax error, unexpected token "<" in /home/laralogi/public_html/index.php on line 6 [31-Aug-2025 10:35:36 Europe/Istanbul] PHP Parse error: syntax error, unexpected token "<" in /home/laralogi/public_html/index.php on line 6 [31-Aug-2025 10:35:37 Europe/Istanbul] PHP Parse error: syntax error, unexpected token "<" in /home/laralogi/public_html/index.php on line 6 [31-Aug-2025 10:42:13 Europe/Istanbul] PHP Parse error: syntax error, unexpected token "=", expecting "(" in /home/laralogi/public_html/index.php on line 7 [31-Aug-2025 10:43:52 Europe/Istanbul] PHP Parse error: syntax error, unexpected token "=", expecting "(" in /home/laralogi/public_html/index.php on line 7
Şu sorun var ama bakıyorum ne işaretler tutuyor ne de farklı birşey yardımcı olurmusunuz sadece php sitem siteninin adı laralogin.com.tr size zahmet dostlarım.
Sorun beni aştı arkadaşlar yardımcı olurmusunuz.
6
●256
- 31-08-2025, 10:52:01
- 31-08-2025, 10:55:16<?php
use PhpParserBuilderFunctionLike;
use PhpParserNodeScalarMagicConstFunction_;
-
zuz-!
function=('alan');-
!
openssl_random_pseudo_bytes-
-
function{("zinzap")}-
function=(-kayit-);
function=('izle');
*-
riza-!
getmygid-!
<variant_idiv:-!>!
:-</variant_idiv:-!>
bzwrite!
islev:-
<div class="snekot
-">!</div>
!
function FunctionName(FunctionLike-) : Returntype {
}
.
<div>microsof-</div>
get_included_files-
!
function={'*!*'};
ctype_alnum-
func_get_arg("enter")-
!
Function_--
-
alibak-!
<openssl_random_pseudo_bytes->!</openssl_random_pseudo_bytes->
/**
* undocumented function summary
*
* Undocumented function long description
*
* @param Type $var Description
* @return type
* @throws conditon
**/
public function FunctionName(Type $var = null17-)
{
# code...
}
~
openssl_public_encrypt-!
-!
resourcebundle_get_error_code(oci_register_taf_cal lback(operadmin));
*-!
-!
ReflectionFunctionAbstract!
-
!
function=('natre')-
ozon-!
function FunctionName(function FunctionName() : Returntype {
}) : Returntype {
}
function={("elle")}:-
openssl_x509_check_private_key!
-
opcache_is_script_cached!
!
+bcceil(-dokuman-):-
function FunctionName(openssl_spki_export_challenge) : Returntype {
}
subjec!
gityukle
SO_BINDTODEVICE!
setcookie-
enerji.-
openssl_pkcs12_export_to_file!
~!
dir.
oldu..
-
!
?> - 31-08-2025, 10:58:42
Ana Hatalar:
1. use ifadeleri yanlış (satır 1-2)
php
// YANLIŞ:
use PhpParserBuilderFunctionLike;use PhpParserNodeScalarMagicConstFunction_;
// DOĞRU:
use PhpParserBuilderFunctionLike;
use PhpParserNodeScalarMagicConstFunction_;
2. Fonksiyon tanımlamaları tamamen yanlış
php
// YANLIŞ:
-zuz-!function=('alan');
function=('izle');
// DOĞRU:
function alan() {
// kod
}
3. HTML kodları PHP içinde yanlış
php
// YANLIŞ:
<div class="snekot-">!</div>
// DOĞRU:
echo '<div class="snekot-"></div>';
4. Anlamsız karakterler ve operatörler
- -zuz-!
- *-riza-!
- !-!
- ~!
Doğru PHP Örneği:
php
<?php
// Use ifadeleri (eğer gerekiyorsa)
use PhpParserBuilderFunctionLike;
// Fonksiyon tanımlama
function alan() {
return "alan değeri";
}
function izle() {
return "izle değeri";
}
// HTML çıktısı
echo '<div class="snekot-">İçerik</div>';
// Sınıf ve metod tanımlama
class MyClass {
public function functionName($var = null) {
// kod
return $var;
}
}
// Cookie ayarlama
setcookie("test", "değer", time() + 3600);
?>
claude bu şekilde söylüyor belki faydası olur