php佔位符不能用是因為程式碼錯誤,其解決方法:先開啟對應的程式碼檔案;然後將「placeholder "Your name here"」修改為「placeholder="Your name here"」即可。
本文操作環境:windows7系統、PHP7.1版,DELL G3電腦
錯誤代碼:
#<form role="search" method="get" id="searchform" class="searchform" action="<?php echo esc_url(home_url('/')); ?>"> <input type="search" class="search rm-input" value="<?php echo get_search_query(); ?>" name="s" id="s" placeholder "Your name here"/> <input type="submit" style="display:none" id="searchsubmit" value="<?php echo esc_attr_x('Search', 'submit button'); ?>" /></form>
我不知道為什麼佔位符文字沒有在欄位中顯示…
解決方法:
程式碼中缺少「=」應該是:
placeholder="Your name here"
推薦學習:《PHP影片教學》
以上是php佔位符不能用怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!