Jump to content

Using New Keyword in PHP


abhishekphp6

Recommended Posts

I copy pasted the following php code

 

<?php

include('XMPPHP/XMPPHP/XMPP.php');

$conn = new XMPP('talk.google.com', 5222, 'bi.dw.architect@gmail.com', 'pappu617', 'xmpphp', 'gmail.com', printlog=False, $loglevel=LOGGING_INFO);

$conn->connect();

$conn->processUntil('session_start');

$conn->message('abhishes@gmail.com', 'this is a test message');

$conn->disconnect();

?>

 

But it gives me error

 

Parse error: syntax error, unexpected '=' in /var/www/foo.php on line 3

 

Do I need to install something before using new?

 

I am using ubuntu linux 9.1.0 php 5.2.10-2ubuntu6.4

 

 

 

 

Link to comment
Share on other sites

Yeah, that is the problem. If you want to leave out those parameters just leave them blank.

 

$conn = new XMPP('talk.google.com', 5222, 'bi.dw.architect@gmail.com', 'pappu617', 'xmpphp', 'gmail.com');

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.