Sobes.tech

Опыт работы с Symfony? Какая версия? Работали с новыми версиями?

197

Experience with OPcache? How did you use and configure it? For what purposes?

174

What level do you consider yourself to be? What criteria do you use?

166

Working with Symfony 3-4 components? Which components have you used?

154

General experience with PHP? Since which year? Were there any breaks?

151

What are the transaction isolation levels in PostgreSQL? What is the default level in PostgreSQL and MySQL?

151

How to handle both Error and Exception in try-catch? What is Throwable? What is the difference between Error and Exception?

150

Working with traits. Is it possible to access a private trait method from a class that uses this trait?

149

What is the output of the following code? <?php function format(&$item) { $item = strtoupper($item) . '.'; return $item; } $shopping = array("fish", "bread", "eggs", "jelly", "apples"); array_walk($shopping, "format"); $shopping = sort($shopping); echo $shopping[1]; A "BREAD." B nothing (no output) C "apples" D "fish" E "APPLES."

139

What is the output of the following code? <?php $g = range(5,8); $h = array("a", "b", "c", "e"); for($i = 0; $i < count($g); $i++) { foreach ($h as $j) { echo $i.$j; break; } }

127

How to implement processing of 200,000 database records in Symfony with Doctrine: selection, processing, API request, record update?

123

What is the difference between DELETE and TRUNCATE in PostgreSQL? Can DELETE be rolled back without a transaction?

122

Are there problems when using iterate() in Doctrine for a large table? What happens to memory during iteration?

117