Ben php script 4.x (evet, biliyorum) den 5.x taşındı yalnızca kırpılmış bir sorunu çözmek için çalışıyorum. Bu girişleri sürekli bir blok için düz bir dosya arar ve çift çizgi tatili sınırlayıcı (\ n \ n) arasında bulunan blok yakalayan bir regex bulunuyor
İşte preg_match kod - eşleşme bulamaz:
$nav_page = 'business_notebook_plan_section1';
if (preg_match("/\n\n(.*?$nav_page: template=.*?)\n\n/", $pages_blocks, $matches)) {
// then find the block that contains this page
print "found a match!";
}
else {print "preg_match failed";}
Burada örnek düz bir dosyadır:
### BUSINESS ###
business_instructions: template=misc/instructions.html
business_notebook_intro: template=notebook/notebook.html&column2=1
business_notebook_plan_section1: template=notebook/notebook.html&column2=1
business_notebook_format_section1: template=notebook/notebook.html&column2=1
business_notebook_steps: template=notebook/notebook.html&column2=1&activity=poll
business_notebook_step1: template=notebook/notebook.html&column2=1
business_notebook_step2: template=notebook/notebook.html
business_notebook_step3: template=notebook/notebook.html&column2=1&activity=poll_text
business_notebook_step4: template=notebook/notebook.html&column2=1&activity=poll_text
business_notebook_step5_section1: template=notebook/notebook.html&column2=1
business_notebook_step6: template=notebook/notebook.html
business_notebook_step7: template=notebook/notebook.html&column2=1
business_notebook_review: template=notebook/notebook.html&num_questions=3
business_notebook_review_feedback: template=notebook/notebook.html&num_questions=3
business_notebook_summary: template=notebook/notebook.html&column2=1
business_notebook_intro_popup: template=shared/transcript_popup.html
business_notebook_intro_video: template=shared/video_popup.html
business_notebook_plan_section2: template=notebook/notebook.html&column2=1
business_notebook_steps_results: template=notebook/notebook.html&column2=1&activity=poll
business_notebook_format_section2: template=notebook/notebook.html&column2=1
business_notebook_step5_section2: template=notebook/notebook.html&column2=1
business_notebook_step5_section3: template=notebook/notebook.html&column2=1
business_notebook_step7_popup: template=shared/transcript_popup.html
business_notebook_step7_video: template=shared/video_popup.html
business_notebook_summary_popup: template=shared/transcript_popup.html
business_notebook_summary_video: template=shared/video_popup.html
business_resources: template=resources/resources.html&cells=2
business_preparation: template=preparation/preparation.html&cells=0
business_preparation_popup: template=preparation/preparation_popup.html&cells=0
Herhangi bir fikir gülünç mutluluk duyacağız!
Keith