到目前为止,我尝试了Aptana和CofeeCup,它们可以正常使用自动完成功能和maby甚至变量,还没有尝试过它们,但是即将描述的内容不起作用......
我目前正在使用NPP(Notepad ++)并且iv打开了变量自动完成功能但是我可以使用它完成功能,除非我按下ctrl +空格键。我没有注意到任何CSS样式的完成。
示例:
<?php
$variable = "My text...";
echo '<html> <-- Fixing tags for me.
<head>
<style>
body {
padding: 0px; <-- Autocomplete CSS inside the styletags within the
echo and maby a popup with options like aptana.
</style>
<script type="text/javascript">
alert("lol"); <-- Autocomplete Javascript inside the scripttag within
</script> <-- the echo maby even jquery.
</head>
<body>'.$variable.' <-- Autocomplete previously used variable names would be
good here, ( like NPP ).
<div style="width:100%;height200px;" ></div> <-- And maby even CSS
</body> <-- Autocomplete on "style" atributes.
</html>';
?>
答案 0 :(得分:1)
查看phpstorm
答案 1 :(得分:0)
在php之外编写javascript,css代码,然后在php块中复制/粘贴。你唯一需要逃避的是引号。简单。
答案 2 :(得分:0)
<? $variable = "My text..."; ?>
<html>
<head>
<style>
body { padding: 0px; }
</style>
<script>
alert("lol");
</script>
</head>
<body>
<?= $variable ?>
</body>
</html>
<? /* the end */ ?>
这样的代码 - 一切都自动完成和东西。 ob_start
+喜欢也可以提供帮助。