Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
Warning: Illegal offset type in /email_HANDLER.php on line 85

$final_message = str_replace($from, $to, $final_message);

preg_match_all('/<img[^>]+>/i',$final_message, $result);
$img = array();
foreach($result as $img_tag)
{
    preg_match_all("/(alt|title|src)=('[^']*')/i",(string)$img_tag, $img[$img_tag]); //LINE 85
}

Anyone? I'm about to tear my hair out over this...

here is my var_dump of $img_tag

array(1) {
  [0]=>
  string(97) "<img alt='' src='http://pete1.netsos.com/site/files/newsletter/banner.jpg' align='' border='0px'>"
share|improve this question
2  
What is $img_tag? – jprofitt Oct 11 '11 at 20:31
var_dump($img_tag) please – RiaD Oct 11 '11 at 20:32
I'm guessing this is the result of something like a node operation with SimpleXML? – Michael Berkowski Oct 11 '11 at 20:33

3 Answers

up vote 7 down vote accepted

Assuming $img_tag is an object of some type, rather than a proper string, cast $img_tag to a string inside the []

preg_match_all("/(alt|title|src)=('[^']*')/i",(string)$img_tag, $img[(string)$img_tag]);
//------------------------------------------------------------------^^^^^^^^^

Some object types, notably SimpleXMLElement for example, will return a string representation to print/echo via the magic method __toString(), but cannot stand in as regular strings. Attempts to use them as array keys will yield the illegal offset type error unless you cast them to proper strings via (string)$obj.

share|improve this answer
now when I add (string) to those two locations, it does not give the strings I need when I print_r $img....which is the image locations, any ideas? – HixVAC Oct 11 '11 at 21:16
Post print_r($result) so we can see what you're starting with. – Michael Berkowski Oct 11 '11 at 22:44
This is worth looking at, too. Good call, I had never ran into this before. us3.php.net/language.types.type-juggling.php – Jason Nov 20 '12 at 20:00

See first comment on this PHP bug report:

You cannot use arrays or objects as keys. Doing so will result in a warning: Illegal offset type. Check your code.

Ensure that $img_tag is of the appropriate variable type.

share|improve this answer

$result is 2-dimentional array.
So, $img_tag should be array.

But only integers ans strings may be used as offset

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.