Doctrine2 압축 패키지의 도구 디렉토리는 일부 명령줄 작업을 수행하는 데 사용됩니다. 여기서는 데이터베이스의 테이블 구조에서 yml/xml/entities를 자동으로 생성하는 도구를 사용하는 방법에 대해 주로 설명합니다. 그 이유는 이러한 항목을 작성하는 것이 시간 낭비이기 때문입니다.
1. Doctrine의 orm:convert-mapping 명령을 통해 xml/yml을 생성합니다
Usage: orm:convert-mapping [options] [--] <to-type> <dest-path> orm:convert:mapping Arguments: to-type The mapping type to be converted. dest-path The path to generate your entities classes. Options: --filter=FILTER A string pattern used to match entities that should be processed. (multiple values allowed) --force Force to overwrite existing mapping files. --from-database Whether or not to convert mapping information from existing database. --extend[=EXTEND] Defines a base class to be extended by generated entity classes. --num-spaces[=NUM-SPACES] Defines the number of indentation spaces [default: 4] --namespace[=NAMESPACE] Defines a namespace for the generated entity classes, if converted from database. -h, --help Display this help message -q, --quiet Do not output any message -V, --version Display this application version --ansi Force ANSI output --no-ansi Disable ANSI output -n, --no-interaction Do not ask any interactive question -v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug Help: Convert mapping information between supported formats. This is an execute one-time command. It should not be necessary for you to call this method multiple times, especially when using the --from-database flag. Converting an existing database schema into mapping files only solves about 70-80% of the necessary mapping information. Additionally the detection from an existing database cannot detect inverse associations, inheritance types, entities with foreign keys as primary keys and many of the semantical operations on associations such as cascade. Hint: There is no need to convert YAML or XML mapping files to annotations every time you make changes. All mapping drivers are first class citizens in Doctrine 2 and can be used as runtime mapping for the ORM. Hint: If you have a database with tables that should not be managed by the ORM, you can use a DBAL functionality to filter the tables and sequences down on a global level: $config->setFilterSchemaAssetsExpression($regexp);
위는 도움말, 여기 예시가 있습니다
/var/www/doctrine$ php vendor/bin/doctrine orm:convert-mapping xml config/xml/ --from-database
Linux에서 실행되는 명령은 다음과 같습니다. 먼저 /var/www/doctrine으로 CD를 입력하세요(일부 멍청이가 물어보네요) , cd가 뭐죠, 이게 왜 디렉토리인가요~~ cd가 뭐죠, 안녕, 이런 질문은 Baidu에 가세요. 왜 이 디렉토리인가요, 이게 프로젝트 폴더입니다, 한마디로 아래에 교리 패키지가 있습니다). 이전 명령에서는 설명이 생략되었습니다. 설명 뒤의 "xml"은 생성된 파일 형식을 의미하고 "config/xml/"은 xml 저장 디렉터리를 의미하며 --from-database는 데이터베이스에서 생성됨을 의미합니다.
2. yml을 생성한 다음 엔터티를 생성합니다
/var/www/doctrine$ php vendor/bin/doctrine orm:generate-entities src/ --regenerate-entities
이것은 간단합니다. 내 엔터티는 /var/www/doctrine/src 아래에서는 순전히 테스트용이므로 구조는 나중에 변경됩니다.
yml을 먼저 생성한 다음 엔터티를 생성해야 합니다. 엔터티를 직접 생성할 수는 없지만 어차피 성공하지 못했습니다. 혹시 연산에 문제가 있는 것은 아닐까요?
PHP ORM은 일반적으로 사용되지 않기 때문에 기사가 너무 적습니다. 직설적으로 말하면 PHP ORM은 그다지 유용하지도 않고 순전히 편리합니다.
위 내용은 관련 내용을 포함하여 yml/xml/entities를 생성하는 Doctrine248 명령줄 도구를 소개합니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.