Jump to content

Really Frustrating problem


waterfoul

Recommended Posts

In my script it apparently crashed after the following set of lines

 

    print('...');
    print(preg_match_all('/Boxes11[^{]*?{([^}]*?)}/i',$file,$tableCellStyle));
    print('GRR');

when those lines run I see "..." but nothing else, any 1 have any ideas as to whats going on?

Link to comment
https://forums.phpfreaks.com/topic/85445-really-frustrating-problem/
Share on other sites

The print on that line was o hat i could see if that function is outputting anything and I know that its that line...

 

Try this

<?php
    print('...');
    preg_match_all('/Boxes11[^{]*?{([^}]*?)}/i',$file,$tableCellStyle);
    foreach ($tableCellStyle as $t) echo $t.", ";
    print('GRR');
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.