fork download
  1. <?php
  2.  
  3. $str= '[vc_row row_height_percent="80" override_padding="yes" h_padding="2" top_padding="5" bottom_padding="5" back_color="color-711512" back_image="27829" parallax="yes" overlay_color="color-711512" overlay_alpha="50" gutter_size="3" column_width_percent="100" shift_y="0" z_index="0" row_name="Welcome" uncode_shortcode_id="188015" back_color_type="uncode-palette" overlay_color_type="uncode-palette"][vc_column column_width_use_pixel="yes" position_vertical="middle" align_horizontal="align_center" gutter_size="3" style="dark" overlay_alpha="50" shift_x="0" shift_y="0" shift_y_down="0" z_index="0" medium_width="0" mobile_width="0" zoom_width="0" zoom_height="0" width="1/1" column_width_pixel="900" uncode_shortcode_id="108135"][vc_row_inner][vc_column_inner column_width_use_pixel="yes" align_horizontal="align_center" gutter_size="3" style="dark" overlay_alpha="50" shift_x="0" shift_y="0" shift_y_down="0" z_index="0" medium_width="0" mobile_width="0" width="1/1" column_width_pixel="900"][vc_custom_heading heading_semantic="h1" text_font="font-571053" text_size="fontsize-256031" css_animation="curtain" animation_delay="600" interval_animation="200" uncode_shortcode_id="379569"]CAMPIONATO | Ravenna FC - Tuttocuoio[/vc_custom_heading][vc_icon icon="fa fa-play" background_style="fa-rounded" size="fa-3x" icon_automatic="yes" shadow="yes" css_animation="zoom-in" animation_speed="1000" animation_delay="1000" lb_video_advanced="yes" lb_autoplay="yes" media_lightbox="27833" uncode_shortcode_id="317164"][/vc_icon][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]';
  4.  
  5. preg_match('/row_height_percent="(.*?)", h_padding=(.*?), top_padding=(.*)/', $str, $m);
  6.  
  7. print_r($m);
  8.  
  9. //if you want to display an item at a time
  10.  
  11. echo "Media = ".$m[1].PHP_EOL;
  12.  
  13.  
  14.  
Success #stdin #stdout #stderr 0.02s 25932KB
stdin
Standard input is empty
stdout
Array
(
)
Media = 
stderr
PHP Notice:  Undefined offset: 1 in /home/vPPvwX/prog.php on line 11