Hauleook/AliceBundle 조명기 용 yml 파일을 구성하려고합니다.randomElement faker 함수가있는 Hautleook/AliceBundle fixture yml 구성
Project\MainBundle\Entity\Manager:
manager_{1..30}:
name: '<firstName()> <lastName()>'
profile_image: '9.jpg'
profile_image_thumb: '<randomElement(['9.jpg','10.jpg'])'
그리고 내가
빈/콘솔 hautelook 실행하려고 할 때 나는 다음과 같은 오류 메시지가 점점 오전 : 비품 : 부하를 당신이 3.0.0을 사용하고 있는지
[Nelmio\Alice\Exception\FixtureBuilder\ExpressionLanguage\LexException]
Could not lex the value "["10.jpg"".
OPEN_APOSTROPHE ** ** '
byxor
@BrandonIbbotson가이 profile_image_thumb 같이 있어야하는데 : OPEN_APOSTROPHE
Ralph
당신은'9.jpg' 부분 전에 문자열을 종료하고 있습니다. 스트링 터미네이터로 간주되지 않도록 아포스트로피를 [escape] (http://php.net/manual/en/language.types.string.php)해야합니다. – byxor