search
HomeBackend DevelopmentPHP TutorialDoctrine248 command line tool generates yml/xml/entities

The tools directory of the Doctrine2 compressed package is used to do some command line work. Here we mainly talk about using tools to automatically generate yml/xml/entities from the table structure of the database. The reason is that writing those things is a waste of time.

1. Generate xml/yml through Doctrine’s orm:convert-mapping command

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);</dest-path></to-type>

The above is help, here is an example

/var/www/doctrine$ php vendor/bin/doctrine orm:convert-mapping xml config/xml/ --from-database

Here is the command to be executed on Linux, first cd to Under /var/www/doctrine (some rookies asked, what is cd, why is this directory~~What is cd, bye, go to Baidu for this kind of question. Why is this directory, this is a project folder, in short, there is the doctrine package below). The previous command omits the explanation. The "xml" behind the explanation means the generated file type, "config/xml/" is the xml storage directory, and --from-database means generated from the database.

2. Generate yml, and then generate entities

/var/www/doctrine$ php vendor/bin/doctrine orm:generate-entities src/ --regenerate-entities

This is simple, my entities are placed under /var/www/doctrine/src, purely for testing, and the later architecture will be The changed

requires first generating yml and then generating entities. Entities cannot be generated directly. Anyway, I didn't succeed. Maybe there is an operation problem?

There are too few articles about PHP ORM, because it is not commonly used. To put it bluntly, PHP ORM is not very useful, it is purely convenient

The above introduces the Doctrine248 command line tool to generate yml/xml/entities, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
discuz database error怎么解决discuz database error怎么解决Nov 20, 2023 am 10:10 AM

discuz database error的解决办法有:1、检查数据库配置;2、确保数据库服务器正在运行;3、检查数据库表状态;4、备份数据;5、清理缓存;6、重新安装Discuz;7、检查服务器资源;8、联系Discuz官方支持。解决Discuz数据库错误需要从多个方面入手,逐步排查问题原因,并采取相应的措施进行修复。

Leak reveals key specs of Intel Arrow Lake-U, -H, -HX and -SLeak reveals key specs of Intel Arrow Lake-U, -H, -HX and -SJun 15, 2024 pm 09:49 PM

IntelArrowLakeisexpectedtobebasedonthesameprocessorarchitectureasLunarLake,meaningthatIntel'sbrandnewLionCoveperformancecoreswillbecombinedwiththeeconomicalSkymontefficiencycores.WhileLunarLakeisonlyavailableasava

误用html entities函数引发的漏洞怎么解决误用html entities函数引发的漏洞怎么解决May 12, 2023 pm 02:13 PM

题目代码如下:漏洞解析:根据题目意思,这里考察的应该是个xss漏洞,漏洞触发点应该在代码中的第13-14行。这两行代码的作用是直接输出一个html的标签。代码中的第3-5行,foreach循环对$_GET传入的参数进行了处理,但是这里有个问题。我们看下第四行的代码,这行代码针对$value进行类型转换,强制变成int类型。但是这部分代码只处理了$value变量,没针对$key变量进行处理。经过了第3-5行的代码处理之后,根据&这个符号进行分割,然后拼接到第13行的echo语句中,在输出的

Can't drop database 'database_name'; database doesn't exist - 如何解决MySQL报错:无法删除数据库,数据库不存在Can't drop database 'database_name'; database doesn't exist - 如何解决MySQL报错:无法删除数据库,数据库不存在Oct 05, 2023 am 11:46 AM

如何解决MySQL报错:无法删除数据库,数据库不存在概述:MySQL是一种常用的关系型数据库管理系统。在使用MySQL中,我们经常需要对数据库进行管理,包括创建数据库、删除数据库等操作。然而,在删除数据库时,有时候会遇到报错提示"Can'tdropdatabase'database_name';databasedoesn'texist",即无法删

convert是什么软件convert是什么软件Dec 09, 2020 am 09:33 AM

convert不是软件,而是在Windows中的文件bai系统修改命令,Convert将文件分配表FAT和FAT32卷转换为NTFS文件系统,而现有的文件和文件夹完好无损,其语法是“convert [Volume] /fs:ntfs [/v] [/cvtarea:FileName] [/nosecurity] [/x]”。

对象关系映射(ORM)基础知识:了解Doctrine ORM对象关系映射(ORM)基础知识:了解Doctrine ORMJun 19, 2023 pm 03:43 PM

对象关系映射(ORM)基础知识:了解DoctrineORM当我们开发应用程序的时候,我们需要对数据库进行操作来存储和获取数据。但是,直接使用原始的数据库查询代码很不方便。我们需要将对象和数据之间建立映射关系,这就是ORM的作用。ORM将对象和数据库表之间自动进行映射和转换,可以轻松地进行数据操作,使得我们的代码更加容易维护。DoctrineORM是PHP

PHP8.0中的数据库连接库:DoctrinePHP8.0中的数据库连接库:DoctrineMay 14, 2023 am 09:00 AM

随着PHP语言的发展,越来越多的开发者开始使用它来构建Web应用程序。使用PHP构建Web应用程序时,一个重要的部分就是数据库连接,尽管有很多数据库连接库可供选择,但是Doctrine是其中一个备受推崇的库。在本文中,我们将探讨Doctrine在PHP8.0中的应用。什么是Doctrine?Doctrine是一个基于PHP的数据库连接库,它提供了一种面向对象

convert命令怎么用convert命令怎么用Oct 25, 2023 pm 02:55 PM

convert命令是ImageMagick图像处理软件包中的一个命令行工具,用于图像格式转换、图像处理和图像合成等操作。常见用法:1、简单的图像格式转换:convert input.jpg output.png;2、调整图像尺寸:convert input.jpg -resize 800x600 output.jpg;3、图像裁剪等等。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor