7 $processing_text = $a_raw_mount_instructions;
9 $found_instructions = array();
14 $open_with_no_close_tag_found =
false;
16 $open_tag_start_pos = strpos($processing_text,
'[');
17 $open_tag_end_pos = strpos($processing_text,
']');
20 if ($open_tag_start_pos !==
false && $open_tag_end_pos !==
false && $open_tag_start_pos < $open_tag_end_pos) {
22 $tag_name = substr($processing_text, $open_tag_start_pos+1, $open_tag_end_pos - $open_tag_start_pos -1);
23 $close_tag =
"[/$tag_name]";
25 $close_tag_pos = strpos($processing_text, $close_tag);
27 if ($close_tag_pos !==
false && $open_tag_end_pos < $close_tag_pos) {
28 $found_instructions[$tag_name] = substr($processing_text, $open_tag_end_pos + 1, $close_tag_pos - $open_tag_end_pos - 1);
30 $processing_text = substr($processing_text, $close_tag_pos + strlen($close_tag));
34 $processing_text = substr($processing_text, $open_tag_end_pos + 1);
35 $open_with_no_close_tag_found =
true;
38 }
while ($pair_found || $open_with_no_close_tag_found);
40 if (count($found_instructions) === 0) {
41 $found_instructions = [ $a_raw_mount_instructions ];
44 return $found_instructions;
parseInstructionsToAssocArray(string $a_raw_mount_instructions)