当我将此行添加到Apache时,我的Apache不会启动,但是当我在httpd.conf
上删除此行时,apache开始,并且我不知道为什么。
行代码;
# Add to the end of the LoadModule section
LoadModule php7_module "C:/php/php7apache2_4.dll"
AddModule mod_php7.c # << This Line !!!
# Add this line inside the <IfModule mod_mime.c> conditional brace
AddType application/x-httpd-php .php
# For syntax highlighted .phps files, also add
#AddType application/x-httpd-php-source .phps
答案 0 :(得分:2)
def myfunc(*args):
return [n for n in args if n%2 == 0]
print(myfunc(1,2,3,4,5,6,7,8,9,10))
# [2, 4, 6, 8, 10]
一直不是指令的名称。您可能正在遵循一些过时的指南。