foo – -Translation – Keybot Dictionary

Spacer TTN Translation Network TTN TTN Login Deutsch Français Spacer Help
Source Languages Target Languages
Keybot 1298 Results  www.sellaronda.it  Page 4
  PHP: MongoDB::execute -...  
$db->execute('db.foo.count(
$db->execute('"bar"; "foo";'); // 複数の文
  PHP: Passage par référe...  
foo ($a);
foo($a);
  PHP: Passage par référe...  
function foo(&$var)
function foo(&$var) {
  PHP: Passage par référe...  
foo(bar()); // Produit une erreur fatale depuis PHP 5.0.5, une remarque
foo(bar()); // Вызывает неисправимую ошибку начиная с PHP 5.0.5
  PHP: Passage par référe...  
foo(new Foobar()) // Produit un notice depuis PHP 7.0.7
foo(new Foobar()) // Вызывает уведомление с PHP 7.0.7
  PHP: MongoGridFS - Manual  
$grid->update(array("filename" => "foo"), $newObj); // update on the files collection
$grid->update(array("filename" => "foo"), $newObj); // actualización en la colección de ficheros
  PHP: Yaf_Route_Rewrite:...  
/* Pour http://yourdomain.com/product/foo/22/foo/bar * la route résultante aura les valeurs suivantes : */ array( "controller" => "product", "module" => "index", //(default) "action" => "index", //(default) ) /** * et les paramètres de la requête : */ array( "name" => "foo", "id" => 22, "foo" => bar )
/* para http://yourdomain.com/product/foo/22/foo/bar * la ruta resultará en los siguientes valores: */ array( "controller" => "product", "module" => "index", //(default) "action" => "index", //(default) ) /** * y los parámetros de petición: */ array( "name" => "foo", "id" => 22, "foo" => bar )
  PHP: Modifications entr...  
($foo->$bar)['baz']()
Foo::{$bar['baz']}()
(Foo::$bar)['baz']()
(Foo::$bar)['baz']()
  PHP: Modifications entr...  
$foo->$bar['baz']()
($foo->$bar)['baz']()
Foo::$bar['baz']()
Foo::$bar['baz']()
  PHP: Modifications entr...  
$foo->$bar['baz']
($foo->$bar)['baz']
$foo->$bar['baz']()
$foo->$bar['baz']()
  PHP: Modifications entr...  
${$foo['bar']['baz']}
$foo->$bar['baz']
$foo->{$bar['baz']}
$foo->{$bar['baz']}
  PHP: Modifications entr...  
(Foo::$bar)['baz']()
This also affects the
  PHP: Modifications entr...  
foo(1);?>
$x++;
  PHP: Modifications entr...  
($$foo)['bar']['baz']
$foo->{$bar['baz']}
($foo->$bar)['baz']
($foo->$bar)['baz']
  PHP: Modifications entr...  
$foo->{$bar['baz']}()
Foo::$bar['baz']()
Foo::{$bar['baz']}()
Foo::{$bar['baz']}()
  PHP: Yaf_Route_Rewrite:...  
/* Pour http://yourdomain.com/product/foo/22/foo/bar * la route résultante aura les valeurs suivantes : */ array( "controller" => "product", "module" => "index", //(default) "action" => "index", //(default) ) /** * et les paramètres de la requête : */ array( "name" => "foo", "id" => 22, "foo" => bar )
/* para http://yourdomain.com/product/foo/22/foo/bar * la ruta resultará en los siguientes valores: */ array( "controller" => "product", "module" => "index", //(default) "action" => "index", //(default) ) /** * y los parámetros de petición: */ array( "name" => "foo", "id" => 22, "foo" => bar )
  PHP: Modifications entr...  
$$foo['bar']['baz']
($$foo)['bar']['baz']
$foo->$bar['baz']
$foo->$bar['baz']
  PHP: Modifications entr...  
Foo::{$bar['baz']}()
Cambios al manejo de list()
  PHP: MongoDB::execute -...  
Maintenant, la première requête retournera "foo", et la seconde retournera un comptage de la collection "foo".
これで、最初の文は "foo" を返して 二番目の文は "foo" コレクションの数を返すようになります。
  PHP: MongoDB::execute -...  
Maintenant, la première requête retournera "foo", et la seconde retournera un comptage de la collection "foo".
これで、最初の文は "foo" を返して 二番目の文は "foo" コレクションの数を返すようになります。
  PHP: Passage par référe...  
foo($a = 5); // Expression, pas une variable
foo($a = 5); // Выражение, а не переменная
  PHP: Passage par référe...  
foo(5); // Produit une erreur fatale
foo(5); // Константа, а не переменная
  PHP: Yaf_Route_Rewrite:...  
/* Pour http://yourdomain.com/product/foo/22/foo/bar * la route résultante aura les valeurs suivantes : */ array( "controller" => "product", "module" => "index", //(default) "action" => "index", //(default) ) /** * et les paramètres de la requête : */ array( "name" => "foo", "id" => 22, "foo" => bar )
/* para http://yourdomain.com/product/foo/22/foo/bar * la ruta resultará en los siguientes valores: */ array( "controller" => "product", "module" => "index", //(default) "action" => "index", //(default) ) /** * y los parámetros de petición: */ array( "name" => "foo", "id" => 22, "foo" => bar )
  PHP: Modifications entr...  
Foo::$bar['baz']()
(Foo::$bar)['baz']()
  PHP: Modifications entr...  
global $$foo->bar;
global ${$foo->bar};
list() の取り扱いの変更
  PHP: Modifications entr...  
($foo->$bar)['baz']
$foo->{$bar['baz']}()
($foo->$bar)['baz']()
($foo->$bar)['baz']()
  PHP: Modifications entr...  
(yield $foo) or die;
// А теперь так
  PHP: Modifications entr...  
yield ($foo or die);
echo yield (-1);
括弧を使えば、曖昧さを排除できます。
// Ранее интерпретировалось так
  PHP: func_num_args - Ma...  
foo('Argument 1', 'Argument 2');
foo('First arg', 'Second arg');
  PHP: Modifications entr...  
yield $foo or die;
echo (yield) - 1;
// PHP 7 ではこのように解釈されます
echo yield (-1);
  PHP: $GLOBALS - Manual  
$foo = "variable locale";
$foo = "local variable";
  PHP: Modifications entr...  
var_dump(substr("foo", "0x1"));
bool(true) bool(true) int(15) string(2) "oo"
var_dump(is_numeric("0x123"));
上の例の PHP 7 での出力は、このようになります。
var_dump("0xe" + "0x1");
  PHP: Modifications entr...  
$foo->{$bar['baz']}
$foo->$bar['baz']()
$foo->{$bar['baz']}()
$foo->{$bar['baz']}()
  PHP: $GLOBALS - Manual  
echo '$foo dans le contexte courant : ' . $foo . "\n";
echo '$foo in current scope: ' . $foo . "\n";
  PHP: Liste des tokens d...  
$foo
var
var
  PHP: Liste des tokens d...  
"foo" ou 'bar'
T_CONSTANT_ENCAPSED_STRING
  PHP: $GLOBALS - Manual  
$foo = "Exemple de contenu";
$foo = "Example content";
  PHP: Modifications entr...  
function foo($x) {
var_dump(func_get_arg(0));
  PHP: rtrim - Manual  
echo basename('MooFoo', 'Foo');
// returns 'This is a'
  PHP: $GLOBALS - Manual  
echo '$foo dans le contexte courant : ' . $foo . "\n";
echo '$foo in current scope: ' . $foo . "\n";
  PHP: Manipulation de ty...  
$foo = 5 * "10 Little Piggies"; // $foo est un entier (50)
$foo = 5 * "10 Little Piggies"; // $foo is integer (50)
  PHP: $GLOBALS - Manual  
echo '$foo dans le contexte global : ' . $GLOBALS["foo"] . "\n";
echo '$foo in global scope: ' . $GLOBALS["foo"] . "\n";
  PHP: $GLOBALS - Manual  
echo '$foo dans le contexte global : ' . $GLOBALS["foo"] . "\n";
echo '$foo in global scope: ' . $GLOBALS["foo"] . "\n";
  PHP: $GLOBALS - Manual  
$foo dans le contexte global : Exemple de contenu $foo dans le contexte courant : variable locale
$foo in global scope: Example content $foo in current scope: local variable
  PHP: $GLOBALS - Manual  
$foo dans le contexte global : Exemple de contenu $foo dans le contexte courant : variable locale
$foo in global scope: Example content $foo in current scope: local variable
  PHP: Manipulation de ty...  
$foo = 5 * "10 Little Piggies"; // $foo est un entier (50)
$foo = 5 * "10 Little Piggies"; // $foo is integer (50)
  PHP: Nombres décimaux -...  
var foo = doBar(0,23);
casting it as something else first.
  PHP: Manipulation de ty...  
$foo = 5 * "10 Small Pigs"; // $foo est un entier (50)
$foo = 5 * "10 Small Pigs"; // $foo is integer (50)
  PHP: Manipulation de ty...  
$fst = (string) $foo; // $fst est également une chaîne
$fst = (string) $foo; // $fst is also a string
  PHP: Manipulation de ty...  
$foo = "1"; // $foo est une chaîne de caractères (ASCII 49)
$foo = "1"; // $foo is string (ASCII 49)
  PHP: Manipulation de ty...  
$foo *= 2; // $foo est maintenant un entier (2)
$foo *= 2; // $foo is now an integer (2)
  PHP: Manipulation de ty...  
$foo *= 2; // $foo est maintenant un entier (2)
$foo *= 2; // $foo is now an integer (2)
  PHP: Nombres décimaux -...  
var foo = doBar(0.23);
(19.6*100) !== (double)1960
  PHP: Manipulation de ty...  
$foo = 10; // $foo est un entier
$foo = 10; // $foo is an integer
  PHP: Manipulation de ty...  
$foo = $foo * 1.3; // $foo est maintenant un nombre à virgule flottante (2.6)
$foo = $foo * 1.3; // $foo is now a float (2.6)
  PHP: Manipulation de ty...  
$foo = $foo * 1.3; // $foo est maintenant un nombre à virgule flottante (2.6)
$foo = $foo * 1.3; // $foo is now a float (2.6)
  PHP: Manipulation de ty...  
$foo = 10; // $foo est un entier
$foo = 10; // $foo is an integer
  PHP: Manipulation de ty...  
$foo = "1"; // $foo est une chaîne de caractères (ASCII 49)
$foo = "1"; // $foo is string (ASCII 49)
  PHP: Manipulation de ty...  
$bar = (boolean) $foo; // $bar est un booléen
$bar = (boolean) $foo; // $bar is a boolean
  PHP: Manipulation de ty...  
$foo = $foo * 1.3; // $foo est maintenant un nombre à virgule flottante (2.6)
$foo = $foo * 1.3; // $foo is now a float (2.6)
  PHP: Manipulation de ty...  
$str = "$foo"; // $str est une chaîne
$str = "$foo"; // $str is a string
  PHP: Manipulation de ty...  
$foo = 5 * "10 Small Pigs"; // $foo est un entier (50)
$foo = 5 * "10 Small Pigs"; // $foo is integer (50)
  PHP: Utiliser PHP - Man...  
foo.php
非推奨
и в
  PHP: MongoCollection::c...  
$c = new MongoCollection($db, 'foo');
// create an index on 'x' ascending
  PHP: Les constantes - M...  
define("FOO", "something");
define("FOO_BAR", "daha başka bir şey");
  PHP: Les constantes - M...  
define("FOO_BAR", "something more");
define("2FOO", "bir şey");
  PHP: Fonctions de rappe...  
public static function foo($values) {
class StaticCallable {
  PHP: Fonctions de rappe...  
foo::callIt('foo::doStuff');
echo "Hello World!";
Arrow 1 2 3 4 5 6 7 8 9 10 Arrow