我只是使用PHP陣列開始(和一般的PHP)我應該在PHP數組中使用Hypens,Underscore還是camelCase?
我有類似下面的代碼:
languages.php:
<?php
$lang = array(
"tagline" => "I build websites...",
"get-in-touch" => "Get in Touch!",
"about-h2" => "About me"
"about-hp" => "Hi! My name is..."
);
?>
的index.php:
<div id="about">
<h2><?php echo $lang['about-h2']; ?></h2>
<p><?php echo $lang['about-p']; ?></p>
</div>
我正在使用hypens(about-h2
),但我不確定這是否會在將來導致我的問題。有什麼建議麼?
我想使用gettext。但是它在我使用的免費共享主機中無效:http://www.zymic.com/。 – alexchenco 2010-02-23 14:32:23