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.
function phpwtf(string $s) {
    echo "$s\n";
}
phpwtf("Type hinting is da bomb");

Catchable fatal error: Argument 1 passed to phpwtf() must be an instance of string, string given

It's more than a little Orwellian to see PHP recognize and reject the desired type in the same breath. There are five lights, damn it.

What is the equivalent of type hinting for strings in PHP?

Bonus consideration to the answer that explains exactly what is going on here.

Summary

The error message is confusing for one big reason:

Primitive type names are not reserved in PHP

The following are all valid class declarations:

class string { }
class int { }
class float { }
class double { }

My mistake was in thinking that the error message was referring solely to the string primitive type - the word 'instance' should have given me pause. An example to illustrate further:

class string { }
$n = 1234;
$s1 = (string)$n;
$s2 = new string();
$a = array('no', 'yes');
printf("\$s1 - primitive string? %s - string instance? %s\n",
        $a[is_string($s1)], $a[is_a($s1, 'string')]);
printf("\$s2 - primitive string? %s - string instance? %s\n",
        $a[is_string($s2)], $a[is_a($s2, 'string')]);

Output:

$s1 - primitive string? yes - string instance? no

$s2 - primitive string? no - string instance? yes

In PHP it's possible for a string to be a string except when it's actually a string. As with any language that uses implicit type conversion, context is everything.

share|improve this question
6  
+1 for captain Picard's quotation – Yanick Rochon Nov 5 '10 at 4:09
What is PHP's problem? – Greg Nov 5 '10 at 4:11
Type hinting doesn't work that way. – meagar Nov 5 '10 at 4:11
4  
Scalar TypeHints are in trunk for by now‌​. They will be available in 5.4 or 6 or whatever they gonna call it then. – Gordon Nov 5 '10 at 7:26
2  
Well, that is because you are doing it wrong. Your code is not supposed to work, to begin with. Read up on type juggling in PHP docs. PHP is dynamic typed and weak typed. You can use (string) to cast an argument to string (only in function body though) but you can only hint objects and arrays like you do in your code snippet. – Richard Knop Nov 5 '10 at 9:08

6 Answers

up vote 35 down vote accepted

PHP type hinting can only be used to force the types of objects and arrays. Scalar types are not type-hintable. In this case an object of the class string is expected, but you're giving it a (scalar) string. The error message may be funny, but it's not supposed to work to begin with. Given the dynamic typing system, this actually makes some sort of perverted sense.

You can only manually "type hint" scalar types:

function foo($string) {
    if (!is_string($string)) {
        trigger_error('No, you fool!');
        return;
    }
    ...
}
share|improve this answer
working with arrays is what makes this so weird :p – hugo_leonardo Sep 11 '12 at 12:14

PHP allows "hinting" where you supply a class to specify an object. According to the PHP manual, "Type Hints can only be of the object and array (since PHP 5.1) type. Traditional type hinting with int and string isn't supported." The error is confusing because of your choice of "string" - put "myClass" in its place and the error will read differently: "Argument 1 passed to phpwtf() must be an instance of myClass, string given"

share|improve this answer

As others have already said, type hinting currently only works for object types. But I think the particular error you've triggered might be in preparation of the upcoming string type SplString.

In theory it behaves like a string, but since it is an object would pass the object type verification. Unfortunately it's not yet in PHP 5.3, might come in 5.4, so haven't tested this.

share|improve this answer

From PHP's manual :

Type Hints can only be of the object and array (since PHP 5.1) type. Traditional type hinting with int and string isn't supported.

So you have it. The error message is not really helpful, I give you that though.

share|improve this answer

I think typecasting on php on inside block, String on PHP is not object as I know:

<?php
function phpwtf($s) {
    $s = (string) $s;
    echo "$s\n";
}
phpwtf("Type hinting is da bomb");
share|improve this answer
You can add is_string() validation inside your function to prevent other value passed to the function. – subosito Nov 5 '10 at 3:59
1  
(string) $s may throw an error if $s is an object that cannot be cast into string (has no __toString() method implemented), so it's not as easy as that – Yanick Rochon Nov 5 '10 at 4:02
Yes Yanick you're right. But we can't forced all of input to be string right? that's why exception comes to play. We can combine sort of validations and catch exception for the rest ;) – subosito Nov 5 '10 at 4:13
I'm just saying that casting some variable to string without checking first if the variable can be cast should be avoided, mainly because catching exceptions is costly and leads to bad design patterns / coding habbits. – Yanick Rochon Nov 5 '10 at 4:25

Maybe not safe and pretty but if you must:

class string
{
    private $Text;
    public function __construct($value)
    {
        $this->Text = $value;
    }

    public function __toString()
    {
        return $this->Text;
    }
}

function Test123(string $s)
{
    echo $s;
}

Test123(new string("Testing"));
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.