Syntax Problem PHP
Morgen ich habe hier ein kleines PHP Syntax problem zumindest sagt eclipse mir das:
meiner meinung hat es irgendwas mit den Gänsefüßen zu tun, aber ersetze ich die " durch ' in zeile 5 und 7 bekomme ich stattdessen
will mich nur eclipse ärgern oder ist wirklich nen fehler hier (btw ich habe es noch nicht geschaft smarty zum laufen zu bringen)
MfG Martin
Description | Resource | Path | Location | Type |
syntax error, unexpected 'F' | 020.php | /php | line 7 | DLTK Problem |
meiner meinung hat es irgendwas mit den Gänsefüßen zu tun, aber ersetze ich die " durch ' in zeile 5 und 7 bekomme ich stattdessen
Description | Resource | Path | Location | Type |
syntax error, unexpected ')' | 020.php | /php | line 19 | DLTK Problem |
syntax error, unexpected 'F' | 020.php | /php | line 7 | DLTK Problem |
will mich nur eclipse ärgern oder ist wirklich nen fehler hier (btw ich habe es noch nicht geschaft smarty zum laufen zu bringen)
MfG Martin
<?php
include ('Smarty.class.php');
$strSmartyTemplateDir = "F:\PortableApps\eclipse moves jdk\php5\smarty\templates\";
$strSmartyCompileDir = "F:\PortableApps\eclipse moves jdk\php5\smarty\compile\";
$smarty = new Smarty();
$smarty->template_dir = $strSmartyTemplateDir;
$smarty->compile_dir = $strSmartyCompileDir;
$smarty->assign('name', 'Max Muster');
$smarty->assign('address', 'Blumenstraße 12');
$smarty->display('sdemo1.tpl');
?>
Bitte markiere auch die Kommentare, die zur Lösung des Beitrags beigetragen haben
Kommentar vom Moderator Mitchell am 08.12.2009 um 09:06:13 Uhr
Überschrift geändert
Content-ID: 131183
Url: https://administrator.de/contentid/131183
Ausgedruckt am: 22.11.2024 um 13:11 Uhr
6 Kommentare
Neuester Kommentar
Zitat von @s7mahess:
> $strSmartyTemplateDir = "F:\PortableApps\eclipse moves jdk\php5\smarty\templates\";
>
> $strSmartyCompileDir = "F:\PortableApps\eclipse moves jdk\php5\smarty\compile\";
>
Durch den Backslash werden deine Gänsefüßchen escaped (\").
Mfg
Mitchell